diff --git a/openApiDocs/beta/Applications.yml b/openApiDocs/beta/Applications.yml index 7bc21801a15..ed97b6d562c 100644 --- a/openApiDocs/beta/Applications.yml +++ b/openApiDocs/beta/Applications.yml @@ -21617,6 +21617,8 @@ components: title: synchronizationJobSubject type: object properties: + links: + $ref: '#/components/schemas/microsoft.graph.synchronizationLinkedObjects' objectId: type: string description: The identifier of an object to which a synchronizationJob is to be applied. @@ -22362,6 +22364,22 @@ components: format: int64 additionalProperties: type: object + microsoft.graph.synchronizationLinkedObjects: + title: synchronizationLinkedObjects + type: object + properties: + manager: + $ref: '#/components/schemas/microsoft.graph.synchronizationJobSubject' + members: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.synchronizationJobSubject' + owners: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.synchronizationJobSubject' + additionalProperties: + type: object microsoft.graph.objectMapping: title: objectMapping type: object diff --git a/openApiDocs/beta/Bookings.yml b/openApiDocs/beta/Bookings.yml index 739c599f4cb..99b74c0286c 100644 --- a/openApiDocs/beta/Bookings.yml +++ b/openApiDocs/beta/Bookings.yml @@ -78,6 +78,7 @@ paths: - appointments - calendarView - customers + - customQuestions - services - staffMembers type: string @@ -95,6 +96,7 @@ paths: - appointments - calendarView - customers + - customQuestions - services - staffMembers type: string @@ -183,6 +185,7 @@ paths: - appointments - calendarView - customers + - customQuestions - services - staffMembers type: string @@ -200,6 +203,7 @@ paths: - appointments - calendarView - customers + - customQuestions - services - staffMembers type: string @@ -223,6 +227,10 @@ paths: operationId: bookingBusinesses.ListCustomers parameters: bookingBusiness-id: $request.path.bookingBusiness-id + customQuestions: + operationId: bookingBusinesses.ListCustomQuestions + parameters: + bookingBusiness-id: $request.path.bookingBusiness-id services: operationId: bookingBusinesses.ListServices parameters: @@ -332,12 +340,16 @@ paths: - customerNotes desc - customerPhone - customerPhone desc + - customers + - customers desc - customerTimeZone - customerTimeZone desc - duration - duration desc - end - end desc + - filledAttendeesCount + - filledAttendeesCount desc - invoiceAmount - invoiceAmount desc - invoiceDate @@ -352,6 +364,8 @@ paths: - isLocationOnline desc - joinWebUrl - joinWebUrl desc + - maximumAttendeesCount + - maximumAttendeesCount desc - onlineMeetingUrl - onlineMeetingUrl desc - optOutOfCustomerEmail @@ -401,9 +415,11 @@ paths: - customerName - customerNotes - customerPhone + - customers - customerTimeZone - duration - end + - filledAttendeesCount - invoiceAmount - invoiceDate - invoiceId @@ -411,6 +427,7 @@ paths: - invoiceUrl - isLocationOnline - joinWebUrl + - maximumAttendeesCount - onlineMeetingUrl - optOutOfCustomerEmail - postBuffer @@ -533,9 +550,11 @@ paths: - customerName - customerNotes - customerPhone + - customers - customerTimeZone - duration - end + - filledAttendeesCount - invoiceAmount - invoiceDate - invoiceId @@ -543,6 +562,7 @@ paths: - invoiceUrl - isLocationOnline - joinWebUrl + - maximumAttendeesCount - onlineMeetingUrl - optOutOfCustomerEmail - postBuffer @@ -746,12 +766,16 @@ paths: - customerNotes desc - customerPhone - customerPhone desc + - customers + - customers desc - customerTimeZone - customerTimeZone desc - duration - duration desc - end - end desc + - filledAttendeesCount + - filledAttendeesCount desc - invoiceAmount - invoiceAmount desc - invoiceDate @@ -766,6 +790,8 @@ paths: - isLocationOnline desc - joinWebUrl - joinWebUrl desc + - maximumAttendeesCount + - maximumAttendeesCount desc - onlineMeetingUrl - onlineMeetingUrl desc - optOutOfCustomerEmail @@ -815,9 +841,11 @@ paths: - customerName - customerNotes - customerPhone + - customers - customerTimeZone - duration - end + - filledAttendeesCount - invoiceAmount - invoiceDate - invoiceId @@ -825,6 +853,7 @@ paths: - invoiceUrl - isLocationOnline - joinWebUrl + - maximumAttendeesCount - onlineMeetingUrl - optOutOfCustomerEmail - postBuffer @@ -959,9 +988,11 @@ paths: - customerName - customerNotes - customerPhone + - customers - customerTimeZone - duration - end + - filledAttendeesCount - invoiceAmount - invoiceDate - invoiceId @@ -969,6 +1000,7 @@ paths: - invoiceUrl - isLocationOnline - joinWebUrl + - maximumAttendeesCount - onlineMeetingUrl - optOutOfCustomerEmail - postBuffer @@ -1363,6 +1395,251 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation + '/bookingBusinesses/{bookingBusiness-id}/customQuestions': + get: + tags: + - bookingBusinesses.bookingCustomQuestion + summary: Get customQuestions from bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. + operationId: bookingBusinesses_ListCustomQuestions + parameters: + - name: bookingBusiness-id + in: path + description: 'key: id of bookingBusiness' + required: true + schema: + type: string + x-ms-docs-key-type: bookingBusiness + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - answerInputType + - answerInputType desc + - answerOptions + - answerOptions desc + - displayName + - displayName desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - answerInputType + - answerOptions + - displayName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of bookingCustomQuestion + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - bookingBusinesses.bookingCustomQuestion + summary: Create new navigation property to customQuestions for bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. + operationId: bookingBusinesses_CreateCustomQuestions + parameters: + - name: bookingBusiness-id + in: path + description: 'key: id of bookingBusiness' + required: true + schema: + type: string + x-ms-docs-key-type: bookingBusiness + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}': + get: + tags: + - bookingBusinesses.bookingCustomQuestion + summary: Get customQuestions from bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. + operationId: bookingBusinesses_GetCustomQuestions + parameters: + - name: bookingBusiness-id + in: path + description: 'key: id of bookingBusiness' + required: true + schema: + type: string + x-ms-docs-key-type: bookingBusiness + - name: bookingCustomQuestion-id + in: path + description: 'key: id of bookingCustomQuestion' + required: true + schema: + type: string + x-ms-docs-key-type: bookingCustomQuestion + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - answerInputType + - answerOptions + - displayName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - bookingBusinesses.bookingCustomQuestion + summary: Update the navigation property customQuestions in bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. + operationId: bookingBusinesses_UpdateCustomQuestions + parameters: + - name: bookingBusiness-id + in: path + description: 'key: id of bookingBusiness' + required: true + schema: + type: string + x-ms-docs-key-type: bookingBusiness + - name: bookingCustomQuestion-id + in: path + description: 'key: id of bookingCustomQuestion' + required: true + schema: + type: string + x-ms-docs-key-type: bookingCustomQuestion + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - bookingBusinesses.bookingCustomQuestion + summary: Delete navigation property customQuestions for bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. + operationId: bookingBusinesses_DeleteCustomQuestions + parameters: + - name: bookingBusiness-id + in: path + description: 'key: id of bookingBusiness' + required: true + schema: + type: string + x-ms-docs-key-type: bookingBusiness + - name: bookingCustomQuestion-id + in: path + description: 'key: id of bookingCustomQuestion' + required: true + schema: + type: string + x-ms-docs-key-type: bookingCustomQuestion + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation '/bookingBusinesses/{bookingBusiness-id}/microsoft.graph.publish': post: tags: @@ -1441,6 +1718,8 @@ paths: - displayName desc - additionalInformation - additionalInformation desc + - customQuestions + - customQuestions desc - defaultDuration - defaultDuration desc - defaultLocation @@ -1457,6 +1736,8 @@ paths: - isHiddenFromCustomers desc - isLocationOnline - isLocationOnline desc + - maximumAttendeesCount + - maximumAttendeesCount desc - notes - notes desc - postBuffer @@ -1485,6 +1766,7 @@ paths: - id - displayName - additionalInformation + - customQuestions - defaultDuration - defaultLocation - defaultPrice @@ -1493,6 +1775,7 @@ paths: - description - isHiddenFromCustomers - isLocationOnline + - maximumAttendeesCount - notes - postBuffer - preBuffer @@ -1602,6 +1885,7 @@ paths: - id - displayName - additionalInformation + - customQuestions - defaultDuration - defaultLocation - defaultPrice @@ -1610,6 +1894,7 @@ paths: - description - isHiddenFromCustomers - isLocationOnline + - maximumAttendeesCount - notes - postBuffer - preBuffer @@ -2227,6 +2512,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' description: All the customers of this business. Read-only. Nullable. + customQuestions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' + description: All the custom questions of this business. Read-only. Nullable. services: type: array items: @@ -2248,6 +2538,7 @@ components: properties: additionalInformation: type: string + description: Additional information that is sent to the customer when an appointment is confirmed. nullable: true customerEmailAddress: type: string @@ -2271,6 +2562,11 @@ components: type: string description: The customer's phone number. nullable: true + customers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.bookingCustomerInformationBase' + description: It lists down the customer properties for an appointment. An appointment will contain a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional. customerTimeZone: type: string description: 'The time zone of the customer. For a list of possible values, see dateTimeTimeZone.' @@ -2282,6 +2578,12 @@ components: format: duration end: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + filledAttendeesCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The current number of customers in the appointment + format: int32 invoiceAmount: type: number description: The billed amount on the invoice. @@ -2300,17 +2602,23 @@ components: nullable: true isLocationOnline: type: boolean - description: True indicates that the appointment will be held online. Default value is false. + description: 'If true, indicates that the appointment will be held online. Default value is false.' joinWebUrl: type: string description: The URL of the online meeting for the appointment. nullable: true + maximumAttendeesCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The maximum number of customers allowed in an appointment. + format: int32 onlineMeetingUrl: type: string nullable: true optOutOfCustomerEmail: type: boolean - description: True indicates that the bookingCustomer for this appointment does not wish to receive a confirmation for this appointment. + description: If true indicates that the bookingCustomer for this appointment does not wish to receive a confirmation for this appointment. postBuffer: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string @@ -2334,7 +2642,7 @@ components: description: The collection of customer reminders sent for this appointment. The value of this property is available only when reading this bookingAppointment by its ID. selfServiceAppointmentId: type: string - description: 'An additional tracking ID for the appointment, if the appointment has been created directly by the customer on the scheduling page, as opposed to by a staff member on the behalf of the customer.' + description: 'An additional tracking ID for the appointment, if the appointment has been created directly by the customer on the scheduling page, as opposed to by a staff member on the behalf of the customer. Only supported for appointment if maxAttendeeCount is 1.' nullable: true serviceId: type: string @@ -2351,7 +2659,7 @@ components: nullable: true smsNotificationsEnabled: type: boolean - description: True indicates SMS notifications will be sent to the customers for the appointment. Default value is false. + description: 'If true, indicates SMS notifications will be sent to the customers for the appointment. Default value is false.' staffMemberIds: type: array items: @@ -2373,7 +2681,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.physicalAddress' - description: 'Addresses associated with the customer, including home, business and other addresses.' + description: Addresses associated with the customer. The attribute type of physicalAddress is not supported in v1.0. Internally we map the addresses to the type others. phones: type: array items: @@ -2382,6 +2690,26 @@ components: additionalProperties: type: object description: Represents a customer of the business. + microsoft.graph.bookingCustomQuestion: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: bookingCustomQuestion + type: object + properties: + answerInputType: + $ref: '#/components/schemas/microsoft.graph.answerInputType' + answerOptions: + type: array + items: + type: string + nullable: true + description: List of possible answer values. + displayName: + type: string + description: Display name of this entity. + additionalProperties: + type: object + description: Represents a custom question of the business. microsoft.graph.bookingService: allOf: - $ref: '#/components/schemas/microsoft.graph.bookingNamedEntity' @@ -2390,7 +2718,13 @@ components: properties: additionalInformation: type: string + description: Additional information that is sent to the customer when an appointment is confirmed. nullable: true + customQuestions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.bookingQuestionAssignment' + description: Contains the set of custom questions associated with a particular service. defaultDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string @@ -2419,6 +2753,12 @@ components: isLocationOnline: type: boolean description: True indicates that the appointments for the service will be held online. Default value is false. + maximumAttendeesCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The maximum number of customers allowed in a service. + format: int32 notes: type: string description: Additional information about this service. @@ -2620,6 +2960,11 @@ components: $ref: '#/components/schemas/microsoft.graph.locationUniqueIdType' additionalProperties: type: object + microsoft.graph.bookingCustomerInformationBase: + title: bookingCustomerInformationBase + type: object + additionalProperties: + type: object microsoft.graph.dateTimeTimeZone: title: dateTimeTimeZone type: object @@ -2698,6 +3043,25 @@ components: $ref: '#/components/schemas/microsoft.graph.phoneType' additionalProperties: type: object + microsoft.graph.answerInputType: + title: answerInputType + enum: + - text + - radioButton + - unknownFutureValue + type: string + microsoft.graph.bookingQuestionAssignment: + title: bookingQuestionAssignment + type: object + properties: + isRequired: + type: boolean + description: The ID of the custom question. + questionId: + type: string + description: Indicates whether it is mandatory to answer the custom question. + additionalProperties: + type: object microsoft.graph.bookingStaffRole: title: bookingStaffRole enum: diff --git a/openApiDocs/beta/ChangeNotifications.yml b/openApiDocs/beta/ChangeNotifications.yml index 5147fb53f8d..6d4fa154a5e 100644 --- a/openApiDocs/beta/ChangeNotifications.yml +++ b/openApiDocs/beta/ChangeNotifications.yml @@ -201,7 +201,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -212,20 +212,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -233,15 +233,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationContentType: type: string - description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. + description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string diff --git a/openApiDocs/beta/Compliance.yml b/openApiDocs/beta/Compliance.yml index 85c074f66d8..b95fd9ebbb0 100644 --- a/openApiDocs/beta/Compliance.yml +++ b/openApiDocs/beta/Compliance.yml @@ -1181,6 +1181,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -1208,6 +1209,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -1282,6 +1284,12 @@ paths: case-id: $request.path.case-id custodian-id: $request.path.custodian-id siteSource-id: $request.path.siteSource-id + operations: + operationId: compliance.ediscovery.cases.custodians.siteSources.Site.ListOperations + parameters: + case-id: $request.path.case-id + custodian-id: $request.path.custodian-id + siteSource-id: $request.path.siteSource-id pages: operationId: compliance.ediscovery.cases.custodians.siteSources.Site.ListPages parameters: @@ -1412,6 +1420,12 @@ paths: case-id: $request.path.case-id custodian-id: $request.path.custodian-id siteSource-id: $request.path.siteSource-id + operations: + operationId: compliance.ediscovery.cases.custodians.siteSources.Site.ListOperations + parameters: + case-id: $request.path.case-id + custodian-id: $request.path.custodian-id + siteSource-id: $request.path.siteSource-id pages: operationId: compliance.ediscovery.cases.custodians.siteSources.Site.ListPages parameters: @@ -3394,6 +3408,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -3421,6 +3436,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -3495,6 +3511,12 @@ paths: case-id: $request.path.case-id legalHold-id: $request.path.legalHold-id siteSource-id: $request.path.siteSource-id + operations: + operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.ListOperations + parameters: + case-id: $request.path.case-id + legalHold-id: $request.path.legalHold-id + siteSource-id: $request.path.siteSource-id pages: operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.ListPages parameters: @@ -3625,6 +3647,12 @@ paths: case-id: $request.path.case-id legalHold-id: $request.path.legalHold-id siteSource-id: $request.path.siteSource-id + operations: + operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.ListOperations + parameters: + case-id: $request.path.case-id + legalHold-id: $request.path.legalHold-id + siteSource-id: $request.path.siteSource-id pages: operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.ListPages parameters: @@ -8911,6 +8939,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -10119,6 +10151,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -10126,6 +10162,28 @@ components: description: The set of subscriptions on the list. additionalProperties: type: object + microsoft.graph.richLongRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' + - title: richLongRunningOperation + type: object + properties: + error: + $ref: '#/components/schemas/microsoft.graph.publicError' + percentageComplete: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + resourceId: + type: string + nullable: true + type: + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -11428,7 +11486,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' refreshTokensValidFromDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -11463,7 +11521,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -12380,7 +12438,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -12391,20 +12449,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -12412,15 +12470,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationContentType: type: string - description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. + description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -12433,6 +12491,57 @@ components: description: Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource. additionalProperties: type: object + microsoft.graph.longRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: longRunningOperation + type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + lastActionDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + resourceLocation: + type: string + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.longRunningOperationStatus' + statusDetail: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.publicError: + title: publicError + type: object + properties: + code: + type: string + description: Represents the error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: Details of the error. + innerError: + $ref: '#/components/schemas/microsoft.graph.publicInnerError' + message: + type: string + description: A non-localized message for the developer. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.contentTypeInfo: title: contentTypeInfo type: object @@ -13656,7 +13765,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -13666,7 +13775,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -13922,6 +14031,8 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true + userPurpose: + $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -15060,7 +15171,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -15373,7 +15484,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -15947,6 +16058,10 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' registration: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' + transcripts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.callTranscript' additionalProperties: type: object microsoft.graph.presence: @@ -16071,7 +16186,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -16820,6 +16935,56 @@ components: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' additionalProperties: type: object + microsoft.graph.longRunningOperationStatus: + title: longRunningOperationStatus + enum: + - notStarted + - running + - succeeded + - failed + - unknownFutureValue + type: string + microsoft.graph.publicErrorDetail: + title: publicErrorDetail + type: object + properties: + code: + type: string + description: The error code. + nullable: true + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object + microsoft.graph.publicInnerError: + title: publicInnerError + type: object + properties: + code: + type: string + description: The error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: A collection of error details. + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.sitePageData: title: sitePageData type: object @@ -18055,6 +18220,18 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.userPurpose: + title: userPurpose + enum: + - unknown + - user + - linked + - shared + - room + - equipment + - others + - unknownFutureValue + type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -20958,6 +21135,8 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' + captions: + $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -21067,12 +21246,10 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' + - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' - title: meetingRegistration type: object properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -21114,11 +21291,23 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' - description: Registrants of the online meeting. + additionalProperties: + type: object + microsoft.graph.callTranscript: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: callTranscript + type: object + properties: + content: + type: string + format: base64url + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -21221,32 +21410,6 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object - microsoft.graph.longRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: longRunningOperation - type: object - properties: - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - lastActionDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - resourceLocation: - type: string - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.longRunningOperationStatus' - statusDetail: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -24284,6 +24447,26 @@ components: - everyone - unknownFutureValue type: string + microsoft.graph.broadcastMeetingCaptionSettings: + title: broadcastMeetingCaptionSettings + type: object + properties: + isCaptionEnabled: + type: boolean + description: Indicates whether caption is enabled for this Teams live event. + nullable: true + spokenLanguage: + type: string + description: The spoken language. + nullable: true + translationLanguages: + type: array + items: + type: string + nullable: true + description: The translation languages (choose up to 6). + additionalProperties: + type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -24319,16 +24502,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving. + description: List of time periods between joining and leaving a meeting. emailAddress: type: string - description: Email address. + description: Email address of the user associated with this atttendance record. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -24339,13 +24522,21 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string + microsoft.graph.meetingRegistrationBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrationBase + type: object + properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' + description: Registrants of the online meeting. + additionalProperties: + type: object microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -24384,43 +24575,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrant: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrant - type: object - properties: - customQuestionAnswers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' - description: The registrant's answer to custom questions. - email: - type: string - description: The email address of the registrant. - nullable: true - firstName: - type: string - description: The first name of the registrant. - nullable: true - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - lastName: - type: string - description: The last name of the registrant. - nullable: true - registrationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time in UTC when the registrant registers for the meeting. Read-only. - format: date-time - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -24428,15 +24582,6 @@ components: - notAttested - unknownFutureValue type: string - microsoft.graph.longRunningOperationStatus: - title: longRunningOperationStatus - enum: - - notStarted - - running - - succeeded - - failed - - unknownFutureValue - type: string microsoft.graph.authenticationPhoneType: title: authenticationPhoneType enum: @@ -25434,17 +25579,36 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee joined in UTC. + description: The time the attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee left in UTC. + description: The time the attendee left in UTC. format: date-time nullable: true additionalProperties: type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string + microsoft.graph.meetingRegistrantBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrantBase + type: object + properties: + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + additionalProperties: + type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -25452,32 +25616,6 @@ components: - radioButton - unknownFutureValue type: string - microsoft.graph.customQuestionAnswer: - title: customQuestionAnswer - type: object - properties: - displayName: - type: string - description: Display name of the custom registration question. Read-only. - nullable: true - questionId: - type: string - description: ID the custom registration question. Read-only. - nullable: true - value: - type: string - description: Answer to the custom registration question. - nullable: true - additionalProperties: - type: object - microsoft.graph.meetingRegistrantStatus: - title: meetingRegistrantStatus - enum: - - registered - - canceled - - processing - - unknownFutureValue - type: string microsoft.graph.teamworkUserIdentityType: title: teamworkUserIdentityType enum: diff --git a/openApiDocs/beta/DeviceManagement.Administration.yml b/openApiDocs/beta/DeviceManagement.Administration.yml index 58ea141e663..2d0e05c5ec6 100644 --- a/openApiDocs/beta/DeviceManagement.Administration.yml +++ b/openApiDocs/beta/DeviceManagement.Administration.yml @@ -16971,6 +16971,7 @@ components: expirationDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date the image became unavailable. format: date nullable: true lastModifiedDateTime: diff --git a/openApiDocs/beta/DeviceManagement.yml b/openApiDocs/beta/DeviceManagement.yml index 7577641e46a..17a16463d89 100644 --- a/openApiDocs/beta/DeviceManagement.yml +++ b/openApiDocs/beta/DeviceManagement.yml @@ -62,8 +62,6 @@ paths: - deviceConfigurations - deviceConfigurationsAllManagedDeviceCertificateStates - deviceConfigurationUserStateSummaries - - hardwareConfigurations - - hardwarePasswordInfo - iosUpdateStatuses - macOSSoftwareUpdateAccountSummaries - managedDeviceEncryptionStates @@ -225,8 +223,6 @@ paths: - deviceConfigurations - deviceConfigurationsAllManagedDeviceCertificateStates - deviceConfigurationUserStateSummaries - - hardwareConfigurations - - hardwarePasswordInfo - iosUpdateStatuses - macOSSoftwareUpdateAccountSummaries - managedDeviceEncryptionStates @@ -407,10 +403,6 @@ paths: operationId: deviceManagement.ListDeviceConfigurationsAllManagedDeviceCertificateStates deviceConfigurationUserStateSummaries: operationId: deviceManagement.GetDeviceConfigurationUserStateSummaries - hardwareConfigurations: - operationId: deviceManagement.ListHardwareConfigurations - hardwarePasswordInfo: - operationId: deviceManagement.ListHardwarePasswordInfo iosUpdateStatuses: operationId: deviceManagement.ListIosUpdateStatuses macOSSoftwareUpdateAccountSummaries: @@ -45657,16 +45649,6 @@ components: description: Summary of all certificates for all devices. deviceConfigurationUserStateSummaries: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStateSummary' - hardwareConfigurations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.hardwareConfiguration' - description: The hardware configurations for this account. - hardwarePasswordInfo: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.hardwarePasswordInfo' - description: The hardware password info for this account. iosUpdateStatuses: type: array items: @@ -46880,7 +46862,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -47515,7 +47497,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' refreshTokensValidFromDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -47550,7 +47532,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -53663,95 +53645,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.hardwareConfiguration: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwareConfiguration - type: object - properties: - configurationFileContent: - type: string - description: File content of the hardware configuration - format: base64url - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Timestamp of when the hardware configuration was created. This property is read-only. - format: date-time - description: - type: string - description: Description of the hardware configuration - nullable: true - displayName: - type: string - description: Name of the hardware configuration - fileName: - type: string - description: File name of the hardware configuration - hardwareConfigurationFormat: - $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationFormat' - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Timestamp of when the hardware configuration was modified. This property is read-only. - format: date-time - perDevicePasswordDisabled: - type: boolean - description: A value indicating whether per devcive pasword disabled - roleScopeTagIds: - type: array - items: - type: string - nullable: true - description: List of Scope Tag IDs for the hardware configuration - version: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Version of the hardware configuration - format: int32 - assignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationAssignment' - description: List of group assignments for the hardware configuration - deviceRunStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationDeviceState' - description: List of run states for the hardware configuration across all devices - runSummary: - $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationRunSummary' - userRunStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationUserState' - description: List of run states for the hardware configuration across all users - additionalProperties: - type: object - description: Intune will provide customer the ability to configure hardware/bios settings on the enrolled windows 10 Azure Active Directory joined devices. - microsoft.graph.hardwarePasswordInfo: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwarePasswordInfo - type: object - properties: - currentPassword: - type: string - description: Current device password - nullable: true - previousPasswords: - type: array - items: - type: string - nullable: true - description: List of previous device passwords - serialNumber: - type: string - description: Device serial number - additionalProperties: - type: object - description: Intune will provide customer the ability to configure hardware/bios settings on the enrolled windows 10 Azure Active Directory joined devices. microsoft.graph.iosUpdateDeviceStatus: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -57340,7 +57233,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -57350,7 +57243,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -57649,6 +57542,8 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true + userPurpose: + $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -59064,6 +58959,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -59403,7 +59302,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -60037,6 +59936,10 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' registration: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' + transcripts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.callTranscript' additionalProperties: type: object microsoft.graph.presence: @@ -60161,7 +60064,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -61612,6 +61515,7 @@ components: expirationDate: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string + description: The date the image became unavailable. format: date nullable: true lastModifiedDateTime: @@ -62069,216 +61973,6 @@ components: - revoked type: string description: Certificate Revocation Status. - microsoft.graph.hardwareConfigurationFormat: - title: hardwareConfigurationFormat - enum: - - dell - - surface - - surfaceDock - type: string - description: Indicates the supported oems of hardware configuration - microsoft.graph.hardwareConfigurationAssignment: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwareConfigurationAssignment - type: object - properties: - target: - $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget' - additionalProperties: - type: object - description: Contains properties used to assign a hardware configuration to a group. - microsoft.graph.hardwareConfigurationDeviceState: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwareConfigurationDeviceState - type: object - properties: - configurationError: - type: string - description: Error from the hardware configuration execution - nullable: true - configurationOutput: - type: string - description: Output of the hardware configuration execution - nullable: true - configurationState: - $ref: '#/components/schemas/microsoft.graph.runState' - deviceName: - type: string - description: The name of the device - nullable: true - internalVersion: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The Policy internal version - format: int32 - lastStateUpdateDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The last timestamp of when the hardware configuration executed - format: date-time - osVersion: - type: string - description: Operating system version of the device. - nullable: true - upn: - type: string - description: User Principal Name (UPN). - nullable: true - additionalProperties: - type: object - description: Contains properties for device run state of the hardware configuration - microsoft.graph.hardwareConfigurationRunSummary: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwareConfigurationRunSummary - type: object - properties: - errorDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configuration state is error - format: int32 - errorUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configuration state is error - format: int32 - failedDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configuration found an issue - format: int32 - failedUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configuration found an issue - format: int32 - lastRunDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Last run time for the configuration across all devices - format: date-time - nullable: true - notApplicableDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configuration state is not applicable - format: int32 - notApplicableUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configuration state is not applicable - format: int32 - pendingDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configuration is in pending state - format: int32 - pendingUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configuration is in pending state - format: int32 - successfulDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configured without any issue - format: int32 - successfulUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configured without any issue - format: int32 - unknownDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of devices for which hardware configuration state is unknown - format: int32 - unknownUserCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of users for which hardware configuration state is unknown - format: int32 - additionalProperties: - type: object - description: Contains properties for the run summary of a hardware configuration script. - microsoft.graph.hardwareConfigurationUserState: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: hardwareConfigurationUserState - type: object - properties: - errorDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Error device count for specific user. - format: int32 - failedDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Failed device count for specific user - format: int32 - lastStateUpdateDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Last timestamp when the hardware configuration executed - format: date-time - notApplicableDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Not applicable device count for specific user. - format: int32 - pendingDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Pending device count for specific user. - format: int32 - successfulDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Success device count for specific user - format: int32 - unknownDeviceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Unknown device count for specific user. - format: int32 - upn: - type: string - description: User Principal Name (UPN) - nullable: true - userEmail: - type: string - description: User Email address - nullable: true - userName: - type: string - description: User name - nullable: true - additionalProperties: - type: object - description: Contains properties for User state of the hardware configuration microsoft.graph.iosUpdatesInstallStatus: title: iosUpdatesInstallStatus enum: @@ -63910,6 +63604,18 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.userPurpose: + title: userPurpose + enum: + - unknown + - user + - linked + - shared + - room + - equipment + - others + - unknownFutureValue + type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -65404,6 +65110,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -65634,6 +65344,28 @@ components: description: The collection of column definitions for this contentType. additionalProperties: type: object + microsoft.graph.richLongRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' + - title: richLongRunningOperation + type: object + properties: + error: + $ref: '#/components/schemas/microsoft.graph.publicError' + percentageComplete: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + resourceId: + type: string + nullable: true + type: + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -67309,6 +67041,8 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' + captions: + $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -67418,12 +67152,10 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' + - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' - title: meetingRegistration type: object properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -67465,11 +67197,23 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' - description: Registrants of the online meeting. + additionalProperties: + type: object + microsoft.graph.callTranscript: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: callTranscript + type: object + properties: + content: + type: string + format: base64url + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -70569,7 +70313,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -70580,20 +70324,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -70601,15 +70345,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationContentType: type: string - description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. + description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -71058,6 +70802,31 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.publicError: + title: publicError + type: object + properties: + code: + type: string + description: Represents the error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: Details of the error. + innerError: + $ref: '#/components/schemas/microsoft.graph.publicInnerError' + message: + type: string + description: A non-localized message for the developer. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.contentTypeInfo: title: contentTypeInfo type: object @@ -72139,6 +71908,26 @@ components: - everyone - unknownFutureValue type: string + microsoft.graph.broadcastMeetingCaptionSettings: + title: broadcastMeetingCaptionSettings + type: object + properties: + isCaptionEnabled: + type: boolean + description: Indicates whether caption is enabled for this Teams live event. + nullable: true + spokenLanguage: + type: string + description: The spoken language. + nullable: true + translationLanguages: + type: array + items: + type: string + nullable: true + description: The translation languages (choose up to 6). + additionalProperties: + type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -72174,16 +71963,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving. + description: List of time periods between joining and leaving a meeting. emailAddress: type: string - description: Email address. + description: Email address of the user associated with this atttendance record. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -72194,13 +71983,21 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string + microsoft.graph.meetingRegistrationBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrationBase + type: object + properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' + description: Registrants of the online meeting. + additionalProperties: + type: object microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -72239,43 +72036,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrant: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrant - type: object - properties: - customQuestionAnswers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' - description: The registrant's answer to custom questions. - email: - type: string - description: The email address of the registrant. - nullable: true - firstName: - type: string - description: The first name of the registrant. - nullable: true - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - lastName: - type: string - description: The last name of the registrant. - nullable: true - registrationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time in UTC when the registrant registers for the meeting. Read-only. - format: date-time - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -73739,6 +73499,47 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.publicErrorDetail: + title: publicErrorDetail + type: object + properties: + code: + type: string + description: The error code. + nullable: true + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object + microsoft.graph.publicInnerError: + title: publicInnerError + type: object + properties: + code: + type: string + description: The error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: A collection of error details. + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.sitePageData: title: sitePageData type: object @@ -74259,17 +74060,36 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee joined in UTC. + description: The time the attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee left in UTC. + description: The time the attendee left in UTC. format: date-time nullable: true additionalProperties: type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string + microsoft.graph.meetingRegistrantBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrantBase + type: object + properties: + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + additionalProperties: + type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -74277,32 +74097,6 @@ components: - radioButton - unknownFutureValue type: string - microsoft.graph.customQuestionAnswer: - title: customQuestionAnswer - type: object - properties: - displayName: - type: string - description: Display name of the custom registration question. Read-only. - nullable: true - questionId: - type: string - description: ID the custom registration question. Read-only. - nullable: true - value: - type: string - description: Answer to the custom registration question. - nullable: true - additionalProperties: - type: object - microsoft.graph.meetingRegistrantStatus: - title: meetingRegistrantStatus - enum: - - registered - - canceled - - processing - - unknownFutureValue - type: string microsoft.graph.teamworkUserIdentityType: title: teamworkUserIdentityType enum: diff --git a/openApiDocs/beta/Devices.CloudPrint.yml b/openApiDocs/beta/Devices.CloudPrint.yml index e8479d4f222..9dbcf90b05f 100644 --- a/openApiDocs/beta/Devices.CloudPrint.yml +++ b/openApiDocs/beta/Devices.CloudPrint.yml @@ -7747,7 +7747,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -8071,19 +8071,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.applicationSignInDetailedSummary' - description: Represents a detailed summary of an application sign-in. authenticationMethods: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRoot' credentialUserRegistrationDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.credentialUserRegistrationDetails' - description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. userCredentialUsageDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.userCredentialUsageDetails' - description: Represents the self-service password reset (SSPR) usage for a given tenant. dailyPrintUsageByPrinter: type: array items: @@ -9173,10 +9170,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -9409,7 +9402,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -9419,7 +9412,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -9675,8 +9668,6 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true - userPurpose: - $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -10815,7 +10806,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -11128,7 +11119,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -11826,7 +11817,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -12875,10 +12866,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -13109,28 +13096,6 @@ components: description: The collection of column definitions for this contentType. additionalProperties: type: object - microsoft.graph.richLongRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' - - title: richLongRunningOperation - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.publicError' - percentageComplete: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - resourceId: - type: string - nullable: true - type: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -13880,18 +13845,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.userPurpose: - title: userPurpose - enum: - - unknown - - user - - linked - - shared - - room - - equipment - - others - - unknownFutureValue - type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -17014,8 +16967,6 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' - captions: - $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -17125,10 +17076,12 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' + - $ref: '#/components/schemas/microsoft.graph.entity' - title: meetingRegistration type: object properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -17170,6 +17123,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' + description: Registrants of the online meeting. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -19712,7 +19670,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -19723,20 +19681,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -19744,15 +19702,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationContentType: type: string - description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. + description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -20201,31 +20159,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicError: - title: publicError - type: object - properties: - code: - type: string - description: Represents the error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: Details of the error. - innerError: - $ref: '#/components/schemas/microsoft.graph.publicInnerError' - message: - type: string - description: A non-localized message for the developer. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.contentTypeInfo: title: contentTypeInfo type: object @@ -22630,26 +22563,6 @@ components: - everyone - unknownFutureValue type: string - microsoft.graph.broadcastMeetingCaptionSettings: - title: broadcastMeetingCaptionSettings - type: object - properties: - isCaptionEnabled: - type: boolean - description: Indicates whether caption is enabled for this Teams live event. - nullable: true - spokenLanguage: - type: string - description: The spoken language. - nullable: true - translationLanguages: - type: array - items: - type: string - nullable: true - description: The translation languages (choose up to 6). - additionalProperties: - type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -22685,16 +22598,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. + description: List of time periods between joining and leaving. emailAddress: type: string - description: Email address of the user associated with this atttendance record. + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -22705,21 +22618,13 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrationBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrationBase - type: object - properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' - description: Registrants of the online meeting. - additionalProperties: - type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -22758,6 +22663,43 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.meetingRegistrant: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrant + type: object + properties: + customQuestionAnswers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' + description: The registrant's answer to custom questions. + email: + type: string + description: The email address of the registrant. + nullable: true + firstName: + type: string + description: The first name of the registrant. + nullable: true + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + lastName: + type: string + description: The last name of the registrant. + nullable: true + registrationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Time in UTC when the registrant registers for the meeting. Read-only. + format: date-time + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' + additionalProperties: + type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -23774,47 +23716,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicErrorDetail: - title: publicErrorDetail - type: object - properties: - code: - type: string - description: The error code. - nullable: true - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object - microsoft.graph.publicInnerError: - title: publicInnerError - type: object - properties: - code: - type: string - description: The error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: A collection of error details. - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.sitePageData: title: sitePageData type: object @@ -24803,36 +24704,17 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee joined in UTC. + description: Time attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee left in UTC. + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string - microsoft.graph.meetingRegistrantBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrantBase - type: object - properties: - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - additionalProperties: - type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -24840,6 +24722,32 @@ components: - radioButton - unknownFutureValue type: string + microsoft.graph.customQuestionAnswer: + title: customQuestionAnswer + type: object + properties: + displayName: + type: string + description: Display name of the custom registration question. Read-only. + nullable: true + questionId: + type: string + description: ID the custom registration question. Read-only. + nullable: true + value: + type: string + description: Answer to the custom registration question. + nullable: true + additionalProperties: + type: object + microsoft.graph.meetingRegistrantStatus: + title: meetingRegistrantStatus + enum: + - registered + - canceled + - processing + - unknownFutureValue + type: string microsoft.graph.teamworkUserIdentityType: title: teamworkUserIdentityType enum: diff --git a/openApiDocs/beta/Identity.Governance.yml b/openApiDocs/beta/Identity.Governance.yml index cb2d7f82dc7..f4f7a26ca85 100644 --- a/openApiDocs/beta/Identity.Governance.yml +++ b/openApiDocs/beta/Identity.Governance.yml @@ -133330,6 +133330,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttribute' + description: Contains attribute information for the resource. description: type: string description: A description for the resource. @@ -135219,6 +135220,7 @@ components: nullable: true isAnswerEditable: type: boolean + description: Specifies whether the requestor is allowed to edit answers to questions. nullable: true isRequired: type: boolean @@ -135317,17 +135319,21 @@ components: $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeDestination' attributeName: type: string + description: The name of the attribute in the end system. nullable: true attributeSource: $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeSource' id: type: string + description: Unique identifier for the attribute. nullable: true isEditable: type: boolean + description: Specifies whether or not an existing attribute value can be edited by the requester. nullable: true isPersistedOnAssignmentRemoval: type: boolean + description: Specifies whether the attribute will remain in the end system after an assignment ends. nullable: true additionalProperties: type: object @@ -138259,7 +138265,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' refreshTokensValidFromDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -143130,6 +143136,10 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' registration: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' + transcripts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.callTranscript' additionalProperties: type: object microsoft.graph.presence: @@ -147591,6 +147601,23 @@ components: description: Custom registration questions. additionalProperties: type: object + microsoft.graph.callTranscript: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: callTranscript + type: object + properties: + content: + type: string + format: base64url + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + additionalProperties: + type: object microsoft.graph.outOfOfficeSettings: title: outOfOfficeSettings type: object diff --git a/openApiDocs/beta/Reports.yml b/openApiDocs/beta/Reports.yml index a499dbc63d8..9fa895a8f9e 100644 --- a/openApiDocs/beta/Reports.yml +++ b/openApiDocs/beta/Reports.yml @@ -889,6 +889,8 @@ paths: - appId desc - appliedConditionalAccessPolicies - appliedConditionalAccessPolicies desc + - authenticationContextClassReferences + - authenticationContextClassReferences desc - authenticationDetails - authenticationDetails desc - authenticationMethodsUsed @@ -903,6 +905,8 @@ paths: - authenticationRequirementPolicies desc - autonomousSystemNumber - autonomousSystemNumber desc + - azureResourceId + - azureResourceId desc - clientAppUsed - clientAppUsed desc - conditionalAccessStatus @@ -915,6 +919,8 @@ paths: - crossTenantAccessType desc - deviceDetail - deviceDetail desc + - federatedCredentialId + - federatedCredentialId desc - flaggedForReview - flaggedForReview desc - homeTenantId @@ -947,6 +953,8 @@ paths: - resourceDisplayName desc - resourceId - resourceId desc + - resourceServicePrincipalId + - resourceServicePrincipalId desc - resourceTenantId - resourceTenantId desc - riskDetail @@ -967,6 +975,8 @@ paths: - servicePrincipalId desc - servicePrincipalName - servicePrincipalName desc + - sessionLifetimePolicies + - sessionLifetimePolicies desc - signInEventTypes - signInEventTypes desc - signInIdentifier @@ -1008,6 +1018,7 @@ paths: - appDisplayName - appId - appliedConditionalAccessPolicies + - authenticationContextClassReferences - authenticationDetails - authenticationMethodsUsed - authenticationProcessingDetails @@ -1015,12 +1026,14 @@ paths: - authenticationRequirement - authenticationRequirementPolicies - autonomousSystemNumber + - azureResourceId - clientAppUsed - conditionalAccessStatus - correlationId - createdDateTime - crossTenantAccessType - deviceDetail + - federatedCredentialId - flaggedForReview - homeTenantId - homeTenantName @@ -1037,6 +1050,7 @@ paths: - processingTimeInMilliseconds - resourceDisplayName - resourceId + - resourceServicePrincipalId - resourceTenantId - riskDetail - riskEventTypes_v2 @@ -1047,6 +1061,7 @@ paths: - servicePrincipalCredentialThumbprint - servicePrincipalId - servicePrincipalName + - sessionLifetimePolicies - signInEventTypes - signInIdentifier - signInIdentifierType @@ -1146,6 +1161,7 @@ paths: - appDisplayName - appId - appliedConditionalAccessPolicies + - authenticationContextClassReferences - authenticationDetails - authenticationMethodsUsed - authenticationProcessingDetails @@ -1153,12 +1169,14 @@ paths: - authenticationRequirement - authenticationRequirementPolicies - autonomousSystemNumber + - azureResourceId - clientAppUsed - conditionalAccessStatus - correlationId - createdDateTime - crossTenantAccessType - deviceDetail + - federatedCredentialId - flaggedForReview - homeTenantId - homeTenantName @@ -1175,6 +1193,7 @@ paths: - processingTimeInMilliseconds - resourceDisplayName - resourceId + - resourceServicePrincipalId - resourceTenantId - riskDetail - riskEventTypes_v2 @@ -1185,6 +1204,7 @@ paths: - servicePrincipalCredentialThumbprint - servicePrincipalId - servicePrincipalName + - sessionLifetimePolicies - signInEventTypes - signInIdentifier - signInIdentifierType @@ -1302,6 +1322,8 @@ paths: - appId desc - appliedConditionalAccessPolicies - appliedConditionalAccessPolicies desc + - authenticationContextClassReferences + - authenticationContextClassReferences desc - authenticationDetails - authenticationDetails desc - authenticationMethodsUsed @@ -1316,6 +1338,8 @@ paths: - authenticationRequirementPolicies desc - autonomousSystemNumber - autonomousSystemNumber desc + - azureResourceId + - azureResourceId desc - clientAppUsed - clientAppUsed desc - conditionalAccessStatus @@ -1328,6 +1352,8 @@ paths: - crossTenantAccessType desc - deviceDetail - deviceDetail desc + - federatedCredentialId + - federatedCredentialId desc - flaggedForReview - flaggedForReview desc - homeTenantId @@ -1360,6 +1386,8 @@ paths: - resourceDisplayName desc - resourceId - resourceId desc + - resourceServicePrincipalId + - resourceServicePrincipalId desc - resourceTenantId - resourceTenantId desc - riskDetail @@ -1380,6 +1408,8 @@ paths: - servicePrincipalId desc - servicePrincipalName - servicePrincipalName desc + - sessionLifetimePolicies + - sessionLifetimePolicies desc - signInEventTypes - signInEventTypes desc - signInIdentifier @@ -1419,6 +1449,7 @@ paths: - appDisplayName - appId - appliedConditionalAccessPolicies + - authenticationContextClassReferences - authenticationDetails - authenticationMethodsUsed - authenticationProcessingDetails @@ -1426,12 +1457,14 @@ paths: - authenticationRequirement - authenticationRequirementPolicies - autonomousSystemNumber + - azureResourceId - clientAppUsed - conditionalAccessStatus - correlationId - createdDateTime - crossTenantAccessType - deviceDetail + - federatedCredentialId - flaggedForReview - homeTenantId - homeTenantName @@ -1448,6 +1481,7 @@ paths: - processingTimeInMilliseconds - resourceDisplayName - resourceId + - resourceServicePrincipalId - resourceTenantId - riskDetail - riskEventTypes_v2 @@ -1458,6 +1492,7 @@ paths: - servicePrincipalCredentialThumbprint - servicePrincipalId - servicePrincipalName + - sessionLifetimePolicies - signInEventTypes - signInIdentifier - signInIdentifierType @@ -1558,6 +1593,7 @@ paths: - appDisplayName - appId - appliedConditionalAccessPolicies + - authenticationContextClassReferences - authenticationDetails - authenticationMethodsUsed - authenticationProcessingDetails @@ -1565,12 +1601,14 @@ paths: - authenticationRequirement - authenticationRequirementPolicies - autonomousSystemNumber + - azureResourceId - clientAppUsed - conditionalAccessStatus - correlationId - createdDateTime - crossTenantAccessType - deviceDetail + - federatedCredentialId - flaggedForReview - homeTenantId - homeTenantName @@ -1587,6 +1625,7 @@ paths: - processingTimeInMilliseconds - resourceDisplayName - resourceId + - resourceServicePrincipalId - resourceTenantId - riskDetail - riskEventTypes_v2 @@ -1597,6 +1636,7 @@ paths: - servicePrincipalCredentialThumbprint - servicePrincipalId - servicePrincipalName + - sessionLifetimePolicies - signInEventTypes - signInIdentifier - signInIdentifierType @@ -2351,6 +2391,7 @@ paths: tags: - reports.applicationSignInDetailedSummary summary: Get applicationSignInDetailedSummary from reports + description: Represents a detailed summary of an application sign-in. operationId: reports_ListApplicationSignInDetailedSummary parameters: - $ref: '#/components/parameters/top' @@ -2437,6 +2478,7 @@ paths: tags: - reports.applicationSignInDetailedSummary summary: Create new navigation property to applicationSignInDetailedSummary for reports + description: Represents a detailed summary of an application sign-in. operationId: reports_CreateApplicationSignInDetailedSummary requestBody: description: New navigation property @@ -2460,6 +2502,7 @@ paths: tags: - reports.applicationSignInDetailedSummary summary: Get applicationSignInDetailedSummary from reports + description: Represents a detailed summary of an application sign-in. operationId: reports_GetApplicationSignInDetailedSummary parameters: - name: applicationSignInDetailedSummary-id @@ -2512,6 +2555,7 @@ paths: tags: - reports.applicationSignInDetailedSummary summary: Update the navigation property applicationSignInDetailedSummary in reports + description: Represents a detailed summary of an application sign-in. operationId: reports_UpdateApplicationSignInDetailedSummary parameters: - name: applicationSignInDetailedSummary-id @@ -2538,6 +2582,7 @@ paths: tags: - reports.applicationSignInDetailedSummary summary: Delete navigation property applicationSignInDetailedSummary for reports + description: Represents a detailed summary of an application sign-in. operationId: reports_DeleteApplicationSignInDetailedSummary parameters: - name: applicationSignInDetailedSummary-id @@ -2563,6 +2608,7 @@ paths: tags: - reports.authenticationMethodsRoot summary: Get authenticationMethods from reports + description: Container for navigation properties for Azure AD authentication methods resources. operationId: reports_GetAuthenticationMethods parameters: - name: $select @@ -2576,6 +2622,7 @@ paths: items: enum: - id + - userRegistrationDetails type: string - name: $expand in: query @@ -2588,6 +2635,7 @@ paths: items: enum: - '*' + - userRegistrationDetails type: string responses: '200': @@ -2596,6 +2644,9 @@ paths: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRoot' + links: + userRegistrationDetails: + operationId: reports.AuthenticationMethods.ListUserRegistrationDetails default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation @@ -2603,6 +2654,7 @@ paths: tags: - reports.authenticationMethodsRoot summary: Update the navigation property authenticationMethods in reports + description: Container for navigation properties for Azure AD authentication methods resources. operationId: reports_UpdateAuthenticationMethods requestBody: description: New navigation property values @@ -2621,6 +2673,7 @@ paths: tags: - reports.authenticationMethodsRoot summary: Delete navigation property authenticationMethods for reports + description: Container for navigation properties for Azure AD authentication methods resources. operationId: reports_DeleteAuthenticationMethods parameters: - name: If-Match @@ -2724,11 +2777,240 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + /reports/authenticationMethods/userRegistrationDetails: + get: + tags: + - reports.authenticationMethodsRoot + summary: Get userRegistrationDetails from reports + operationId: reports.authenticationMethods_ListUserRegistrationDetails + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - isMfaCapable + - isMfaCapable desc + - isMfaRegistered + - isMfaRegistered desc + - isPasswordlessCapable + - isPasswordlessCapable desc + - isSsprCapable + - isSsprCapable desc + - isSsprEnabled + - isSsprEnabled desc + - isSsprRegistered + - isSsprRegistered desc + - methodsRegistered + - methodsRegistered desc + - userDisplayName + - userDisplayName desc + - userPrincipalName + - userPrincipalName desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - isMfaCapable + - isMfaRegistered + - isPasswordlessCapable + - isSsprCapable + - isSsprEnabled + - isSsprRegistered + - methodsRegistered + - userDisplayName + - userPrincipalName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of userRegistrationDetails + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - reports.authenticationMethodsRoot + summary: Create new navigation property to userRegistrationDetails for reports + operationId: reports.authenticationMethods_CreateUserRegistrationDetails + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}': + get: + tags: + - reports.authenticationMethodsRoot + summary: Get userRegistrationDetails from reports + operationId: reports.authenticationMethods_GetUserRegistrationDetails + parameters: + - name: userRegistrationDetails-id + in: path + description: 'key: id of userRegistrationDetails' + required: true + schema: + type: string + x-ms-docs-key-type: userRegistrationDetails + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - isMfaCapable + - isMfaRegistered + - isPasswordlessCapable + - isSsprCapable + - isSsprEnabled + - isSsprRegistered + - methodsRegistered + - userDisplayName + - userPrincipalName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - reports.authenticationMethodsRoot + summary: Update the navigation property userRegistrationDetails in reports + operationId: reports.authenticationMethods_UpdateUserRegistrationDetails + parameters: + - name: userRegistrationDetails-id + in: path + description: 'key: id of userRegistrationDetails' + required: true + schema: + type: string + x-ms-docs-key-type: userRegistrationDetails + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - reports.authenticationMethodsRoot + summary: Delete navigation property userRegistrationDetails for reports + operationId: reports.authenticationMethods_DeleteUserRegistrationDetails + parameters: + - name: userRegistrationDetails-id + in: path + description: 'key: id of userRegistrationDetails' + required: true + schema: + type: string + x-ms-docs-key-type: userRegistrationDetails + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation /reports/credentialUserRegistrationDetails: get: tags: - reports.credentialUserRegistrationDetails summary: Get credentialUserRegistrationDetails from reports + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: reports_ListCredentialUserRegistrationDetails parameters: - $ref: '#/components/parameters/top' @@ -2821,6 +3103,7 @@ paths: tags: - reports.credentialUserRegistrationDetails summary: Create new navigation property to credentialUserRegistrationDetails for reports + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: reports_CreateCredentialUserRegistrationDetails requestBody: description: New navigation property @@ -2844,6 +3127,7 @@ paths: tags: - reports.credentialUserRegistrationDetails summary: Get credentialUserRegistrationDetails from reports + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: reports_GetCredentialUserRegistrationDetails parameters: - name: credentialUserRegistrationDetails-id @@ -2898,6 +3182,7 @@ paths: tags: - reports.credentialUserRegistrationDetails summary: Update the navigation property credentialUserRegistrationDetails in reports + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: reports_UpdateCredentialUserRegistrationDetails parameters: - name: credentialUserRegistrationDetails-id @@ -2924,6 +3209,7 @@ paths: tags: - reports.credentialUserRegistrationDetails summary: Delete navigation property credentialUserRegistrationDetails for reports + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: reports_DeleteCredentialUserRegistrationDetails parameters: - name: credentialUserRegistrationDetails-id @@ -7529,6 +7815,7 @@ paths: tags: - reports.userCredentialUsageDetails summary: Get userCredentialUsageDetails from reports + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: reports_ListUserCredentialUsageDetails parameters: - $ref: '#/components/parameters/top' @@ -7621,6 +7908,7 @@ paths: tags: - reports.userCredentialUsageDetails summary: Create new navigation property to userCredentialUsageDetails for reports + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: reports_CreateUserCredentialUsageDetails requestBody: description: New navigation property @@ -7644,6 +7932,7 @@ paths: tags: - reports.userCredentialUsageDetails summary: Get userCredentialUsageDetails from reports + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: reports_GetUserCredentialUsageDetails parameters: - name: userCredentialUsageDetails-id @@ -7698,6 +7987,7 @@ paths: tags: - reports.userCredentialUsageDetails summary: Update the navigation property userCredentialUsageDetails in reports + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: reports_UpdateUserCredentialUsageDetails parameters: - name: userCredentialUsageDetails-id @@ -7724,6 +8014,7 @@ paths: tags: - reports.userCredentialUsageDetails summary: Delete navigation property userCredentialUsageDetails for reports + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: reports_DeleteUserCredentialUsageDetails parameters: - name: userCredentialUsageDetails-id @@ -7927,6 +8218,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.appliedConditionalAccessPolicy' description: A list of conditional access policies that are triggered by the corresponding sign-in activity. + authenticationContextClassReferences: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.authenticationContext' authenticationDetails: type: array items: @@ -7953,12 +8248,17 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.authenticationRequirementPolicy' + description: 'Sources of authentication requirement, such as conditional access, per-user MFA, identity protection, and security defaults.' autonomousSystemNumber: maximum: 2147483647 minimum: -2147483648 type: integer + description: The Autonomous System Number (ASN) of the network used by the actor. format: int32 nullable: true + azureResourceId: + type: string + nullable: true clientAppUsed: type: string description: 'Identifies the client used for the sign-in activity. Modern authentication clients include Browser and modern clients. Legacy authentication clients include Exchange Active Sync, IMAP, MAPI, SMTP, POP, and other clients. Supports $filter (eq operator only).' @@ -7978,14 +8278,20 @@ components: $ref: '#/components/schemas/microsoft.graph.signInAccessType' deviceDetail: $ref: '#/components/schemas/microsoft.graph.deviceDetail' + federatedCredentialId: + type: string + nullable: true flaggedForReview: type: boolean + description: 'During a failed sign in, a user may click a button in the Azure portal to mark the failed event for tenant admins. If a user clicked the button to flag the failed sign in, this value is true.' nullable: true homeTenantId: type: string + description: The tenant identifier of the user initiating the sign in. Not applicable in Managed Identity or service principal sign ins. nullable: true homeTenantName: type: string + description: 'For user sign ins, the identifier of the tenant that the user is a member of. Only populated in cases where the home tenant has provided affirmative consent to Azure AD to show the tenant content.' nullable: true incomingTokenType: $ref: '#/components/schemas/microsoft.graph.incomingTokenType' @@ -7995,6 +8301,7 @@ components: nullable: true ipAddressFromResourceProvider: type: string + description: 'The IP address a user used to reach a resource provider, used to determine Conditional Access compliance for some policies. For example, when a user interacts with Exchange Online, the IP address Exchange receives from the user may be recorded here. This value is often null.' nullable: true isInteractive: type: boolean @@ -8002,6 +8309,7 @@ components: nullable: true isTenantRestricted: type: boolean + description: Shows whether the sign in event was subject to an Azure AD tenant restriction policy. nullable: true location: $ref: '#/components/schemas/microsoft.graph.signInLocation' @@ -8033,8 +8341,12 @@ components: type: string description: ID of the resource that the user signed into. Supports $filter (eq operator only). nullable: true + resourceServicePrincipalId: + type: string + nullable: true resourceTenantId: type: string + description: The tenant identifier of the resource referenced in the sign in. nullable: true riskDetail: $ref: '#/components/schemas/microsoft.graph.riskDetail' @@ -8052,9 +8364,11 @@ components: $ref: '#/components/schemas/microsoft.graph.riskState' servicePrincipalCredentialKeyId: type: string + description: The unique identifier of the key credential used by the service principal to authenticate. nullable: true servicePrincipalCredentialThumbprint: type: string + description: The certificate thumbprint of the certificate used by the service principal to authenticate. nullable: true servicePrincipalId: type: string @@ -8063,13 +8377,19 @@ components: type: string description: The application name used for sign-in. This field is populated when you are signing in using an application. Supports $filter (eq and startsWith operators only). nullable: true + sessionLifetimePolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.sessionLifetimePolicy' signInEventTypes: type: array items: type: string nullable: true + description: 'Indicates the category of sign in that the event represents. For user sign ins, the category can be interactiveUser or nonInteractiveUser and corresponds to the value for the isInteractive property on the signin resource. For managed identity sign ins, the category is managedIdentity. For service principal sign ins, the category is servicePrincipal. Possible values are: interactiveUser, nonInteractiveUser, servicePrincipal, managedIdentity, unknownFutureValue. Supports $filter (eq operator only).' signInIdentifier: type: string + description: The identification that the user provided to sign in. It may be the userPrincipalName but it's also populated when a user signs in using other identifiers. nullable: true signInIdentifierType: $ref: '#/components/schemas/microsoft.graph.signInIdentifierType' @@ -8083,6 +8403,7 @@ components: $ref: '#/components/schemas/microsoft.graph.tokenIssuerType' uniqueTokenIdentifier: type: string + description: A unique base64 encoded request identifier used to track tokens issued by Azure AD as they are redeemed at resource providers. nullable: true userAgent: type: string @@ -8223,16 +8544,19 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.applicationSignInDetailedSummary' + description: Represents a detailed summary of an application sign-in. authenticationMethods: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRoot' credentialUserRegistrationDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.credentialUserRegistrationDetails' + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. userCredentialUsageDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.userCredentialUsageDetails' + description: Represents the self-service password reset (SSPR) usage for a given tenant. dailyPrintUsageByPrinter: type: array items: @@ -8299,6 +8623,11 @@ components: - $ref: '#/components/schemas/microsoft.graph.entity' - title: authenticationMethodsRoot type: object + properties: + userRegistrationDetails: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userRegistrationDetails' additionalProperties: type: object microsoft.graph.userRegistrationFeatureSummary: @@ -8356,6 +8685,35 @@ components: $ref: '#/components/schemas/microsoft.graph.includedUserTypes' additionalProperties: type: object + microsoft.graph.userRegistrationDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userRegistrationDetails + type: object + properties: + isMfaCapable: + type: boolean + isMfaRegistered: + type: boolean + isPasswordlessCapable: + type: boolean + isSsprCapable: + type: boolean + isSsprEnabled: + type: boolean + isSsprRegistered: + type: boolean + methodsRegistered: + type: array + items: + type: string + nullable: true + userDisplayName: + type: string + userPrincipalName: + type: string + additionalProperties: + type: object microsoft.graph.credentialUserRegistrationDetails: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -8493,7 +8851,7 @@ components: properties: appDisplayName: type: string - description: Name of the application that the user signed in to. + description: Name of the application that the user signed into. failedSignInCount: type: integer description: Count of failed sign-ins made by the application. @@ -9497,6 +9855,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.conditionalAccessRuleSatisfied' + description: 'List of key-value pairs containing each matched exclude condition in the conditional access policy. Example: [{''devicePlatform'' : ''DevicePlatform''}] means the policy didn’t apply, because the DevicePlatform condition was a match.' id: type: string description: An identifier of the conditional access policy. @@ -9505,10 +9864,22 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.conditionalAccessRuleSatisfied' + description: 'List of key-value pairs containing each matched include condition in the conditional access policy. Example: [{ ''application'' : ''AllApps''}, {''users'': ''Group''}], meaning Application condition was a match because AllApps are included and Users condition was a match because the user was part of the included Group rule.' result: $ref: '#/components/schemas/microsoft.graph.appliedConditionalAccessPolicyResult' additionalProperties: type: object + microsoft.graph.authenticationContext: + title: authenticationContext + type: object + properties: + detail: + $ref: '#/components/schemas/microsoft.graph.authenticationContextDetail' + id: + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.authenticationDetail: title: authenticationDetail type: object @@ -9558,6 +9929,7 @@ components: properties: detail: type: string + description: Provides additional detail on the feature identified in requirementProvider. nullable: true requirementProvider: $ref: '#/components/schemas/microsoft.graph.requirementProvider' @@ -9681,15 +10053,19 @@ components: properties: policyId: type: string + description: The unique identifier for the Private Link policy. nullable: true policyName: type: string + description: The name of the Private Link policy in Azure AD. nullable: true policyTenantId: type: string + description: The tenant identifier of the Azure AD tenant the Private Link policy belongs to. nullable: true resourceId: type: string + description: The Azure Resource Manager (ARM) path for the Private Link policy resource. nullable: true additionalProperties: type: object @@ -9730,6 +10106,17 @@ components: - confirmedCompromised - unknownFutureValue type: string + microsoft.graph.sessionLifetimePolicy: + title: sessionLifetimePolicy + type: object + properties: + detail: + type: string + nullable: true + expirationRequirement: + $ref: '#/components/schemas/microsoft.graph.expirationRequirement' + additionalProperties: + type: object microsoft.graph.signInIdentifierType: title: signInIdentifierType enum: @@ -9768,6 +10155,8 @@ components: - ADFederationServices - UnknownFutureValue - AzureADBackupAuth + - ADFederationServicesMFAAdapter + - NPSExtension type: string microsoft.graph.signInUserType: title: signInUserType @@ -10083,9 +10472,11 @@ components: properties: homeTenantId: type: string + description: 'For user sign ins, the identifier of the tenant that the user is a member of.' nullable: true homeTenantName: type: string + description: 'For user sign ins, the name of the tenant that the user is a member of. Only populated in cases where the home tenant has provided affirmative consent to Azure AD to show the tenant content.' nullable: true additionalProperties: type: object @@ -10173,9 +10564,11 @@ components: properties: authenticationStrengthId: type: string + description: Identifier of the authentication strength. nullable: true displayName: type: string + description: The name of the authentication strength. nullable: true additionalProperties: type: object @@ -10223,6 +10616,14 @@ components: - reportOnlyNotApplied - reportOnlyInterrupted type: string + microsoft.graph.authenticationContextDetail: + title: authenticationContextDetail + enum: + - required + - previouslySatisfied + - notApplicable + - unknownFutureValue + type: string microsoft.graph.requirementProvider: title: requirementProvider enum: @@ -10279,6 +10680,17 @@ components: - trustedNamedLocation - unknownFutureValue type: string + microsoft.graph.expirationRequirement: + title: expirationRequirement + enum: + - rememberMultifactorAuthenticationOnTrustedDevices + - tenantTokenLifetimePolicy + - audienceTokenLifetimePolicy + - signInFrequencyPeriodicReauthentication + - ngcMfa + - signInFrequencyEveryTime + - unknownFutureValue + type: string microsoft.graph.authenticationMethodFeature: title: authenticationMethodFeature enum: diff --git a/openApiDocs/beta/Search.yml b/openApiDocs/beta/Search.yml index a9c5b922c1a..7a5d18dc927 100644 --- a/openApiDocs/beta/Search.yml +++ b/openApiDocs/beta/Search.yml @@ -99,6 +99,8 @@ paths: - connectorId desc - description - description desc + - ingestedItemsCount + - ingestedItemsCount desc - name - name desc - searchSettings @@ -120,12 +122,14 @@ paths: - configuration - connectorId - description + - ingestedItemsCount - name - searchSettings - state - groups - items - operations + - quota - schema type: string - name: $expand @@ -142,6 +146,7 @@ paths: - groups - items - operations + - quota - schema type: string responses: @@ -217,12 +222,14 @@ paths: - configuration - connectorId - description + - ingestedItemsCount - name - searchSettings - state - groups - items - operations + - quota - schema type: string - name: $expand @@ -239,6 +246,7 @@ paths: - groups - items - operations + - quota - schema type: string responses: @@ -261,6 +269,10 @@ paths: operationId: external.Connections.ListOperations parameters: externalConnection-id: $request.path.externalConnection-id + quota: + operationId: external.Connections.GetQuota + parameters: + externalConnection-id: $request.path.externalConnection-id schema: operationId: external.Connections.GetSchema parameters: @@ -1174,6 +1186,10 @@ components: type: string description: Description of the connection displayed in the Microsoft 365 admin center. Optional. nullable: true + ingestedItemsCount: + type: integer + format: int64 + nullable: true name: type: string description: The display name of the connection to be displayed in the Microsoft 365 admin center. Maximum length of 128 characters. Required. @@ -1197,6 +1213,8 @@ components: items: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation' description: Read-only. Nullable. + quota: + $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionQuota' schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.schema' additionalProperties: @@ -1512,6 +1530,18 @@ components: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperationStatus' additionalProperties: type: object + microsoft.graph.externalConnectors.connectionQuota: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: connectionQuota + type: object + properties: + itemsRemaining: + type: integer + format: int64 + nullable: true + additionalProperties: + type: object microsoft.graph.externalConnectors.schema: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' diff --git a/openApiDocs/beta/Sites.yml b/openApiDocs/beta/Sites.yml index 921591e4e92..6caae43e281 100644 --- a/openApiDocs/beta/Sites.yml +++ b/openApiDocs/beta/Sites.yml @@ -102,6 +102,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -129,6 +130,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -246,6 +248,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -273,6 +276,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -337,6 +341,11 @@ paths: parameters: group-id: $request.path.group-id site-id: $request.path.site-id + operations: + operationId: groups.Sites.ListOperations + parameters: + group-id: $request.path.group-id + site-id: $request.path.site-id pages: operationId: groups.Sites.ListPages parameters: @@ -519,6 +528,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -546,6 +556,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -646,6 +657,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -673,6 +685,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -727,6 +740,10 @@ paths: operationId: sites.ListLists parameters: site-id: $request.path.site-id + operations: + operationId: sites.ListOperations + parameters: + site-id: $request.path.site-id pages: operationId: sites.ListPages parameters: @@ -2578,6 +2595,82 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub': + post: + tags: + - sites.Actions + summary: Invoke action addCopyFromContentTypeHub + operationId: sites.contentTypes.baseTypes_addCopyFromContentTypeHub + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: contentType-id + in: path + description: 'key: id of contentType' + required: true + schema: + type: string + x-ms-docs-key-type: contentType + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + contentTypeId: + type: string + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes()': + get: + tags: + - sites.Functions + summary: Invoke function getCompatibleHubContentTypes + operationId: sites.contentTypes.baseTypes_getCompatibleHubContentTypes + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: contentType-id + in: path + description: 'key: id of contentType' + required: true + schema: + type: string + x-ms-docs-key-type: contentType + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/sites/{site-id}/contentTypes/{contentType-id}/columnLinks': get: tags: @@ -4032,6 +4125,68 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/sites/{site-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub': + post: + tags: + - sites.Actions + summary: Invoke action addCopyFromContentTypeHub + operationId: sites.contentTypes_addCopyFromContentTypeHub + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + contentTypeId: + type: string + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/sites/{site-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes()': + get: + tags: + - sites.Functions + summary: Invoke function getCompatibleHubContentTypes + operationId: sites.contentTypes_getCompatibleHubContentTypes + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/sites/{site-id}/drive': get: tags: @@ -4986,6 +5141,7 @@ paths: - contentTypes - drive - items + - operations - subscriptions type: string - name: $expand @@ -5006,6 +5162,7 @@ paths: - contentTypes - drive - items + - operations - subscriptions type: string responses: @@ -5115,6 +5272,7 @@ paths: - contentTypes - drive - items + - operations - subscriptions type: string - name: $expand @@ -5135,6 +5293,7 @@ paths: - contentTypes - drive - items + - operations - subscriptions type: string responses: @@ -5180,6 +5339,11 @@ paths: parameters: site-id: $request.path.site-id list-id: $request.path.list-id + operations: + operationId: sites.Lists.ListOperations + parameters: + site-id: $request.path.site-id + list-id: $request.path.list-id subscriptions: operationId: sites.Lists.ListSubscriptions parameters: @@ -7216,6 +7380,10 @@ paths: type: array items: $ref: '#/components/schemas/microsoft.graph.driveRecipient' + retainInheritedPermissions: + type: boolean + default: false + nullable: true additionalProperties: type: object required: true @@ -9647,13 +9815,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks': - get: + '/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub': + post: tags: - - sites.list - summary: Get columnLinks from sites - description: The collection of columns that are required by this content type. - operationId: sites.lists.contentTypes_ListColumnLinks + - sites.Actions + summary: Invoke action addCopyFromContentTypeHub + operationId: sites.lists.contentTypes.baseTypes_addCopyFromContentTypeHub parameters: - name: site-id in: path @@ -9676,80 +9843,171 @@ paths: schema: type: string x-ms-docs-key-type: contentType - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + contentTypeId: + type: string + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes()': + get: + tags: + - sites.Functions + summary: Invoke function getCompatibleHubContentTypes + operationId: sites.lists.contentTypes.baseTypes_getCompatibleHubContentTypes + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - name - - name desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true schema: - uniqueItems: true - type: array - items: - enum: - - id - - name - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false + type: string + x-ms-docs-key-type: list + - name: contentType-id + in: path + description: 'key: id of contentType' + required: true schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string + type: string + x-ms-docs-key-type: contentType responses: '200': - description: Retrieved navigation property + description: Success content: application/json: schema: - title: Collection of columnLink - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnLink' - '@odata.nextLink': - type: string - additionalProperties: - type: object + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contentType' default: $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: + x-ms-docs-operation-type: function + '/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks': + get: tags: - sites.list - summary: Create new navigation property to columnLinks for sites + summary: Get columnLinks from sites description: The collection of columns that are required by this content type. - operationId: sites.lists.contentTypes_CreateColumnLinks + operationId: sites.lists.contentTypes_ListColumnLinks + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + - name: contentType-id + in: path + description: 'key: id of contentType' + required: true + schema: + type: string + x-ms-docs-key-type: contentType + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - name + - name desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of columnLink + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.columnLink' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - sites.list + summary: Create new navigation property to columnLinks for sites + description: The collection of columns that are required by this content type. + operationId: sites.lists.contentTypes_CreateColumnLinks parameters: - name: site-id in: path @@ -11265,6 +11523,82 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub': + post: + tags: + - sites.Actions + summary: Invoke action addCopyFromContentTypeHub + operationId: sites.lists.contentTypes_addCopyFromContentTypeHub + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + contentTypeId: + type: string + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes()': + get: + tags: + - sites.Functions + summary: Invoke function getCompatibleHubContentTypes + operationId: sites.lists.contentTypes_getCompatibleHubContentTypes + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + responses: + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contentType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/sites/{site-id}/lists/{list-id}/drive': get: tags: @@ -12872,6 +13206,10 @@ paths: type: array items: $ref: '#/components/schemas/microsoft.graph.driveRecipient' + retainInheritedPermissions: + type: boolean + default: false + nullable: true additionalProperties: type: object required: true @@ -13724,6 +14062,10 @@ paths: type: array items: $ref: '#/components/schemas/microsoft.graph.driveRecipient' + retainInheritedPermissions: + type: boolean + default: false + nullable: true additionalProperties: type: object required: true @@ -14330,6 +14672,305 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/sites/{site-id}/lists/{list-id}/operations': + get: + tags: + - sites.list + summary: Get operations from sites + operationId: sites.lists_ListOperations + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - createdDateTime + - createdDateTime desc + - lastActionDateTime + - lastActionDateTime desc + - resourceLocation + - resourceLocation desc + - status + - status desc + - statusDetail + - statusDetail desc + - error + - error desc + - percentageComplete + - percentageComplete desc + - resourceId + - resourceId desc + - type + - type desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - createdDateTime + - lastActionDateTime + - resourceLocation + - status + - statusDetail + - error + - percentageComplete + - resourceId + - type + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of richLongRunningOperation + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - sites.list + summary: Create new navigation property to operations for sites + operationId: sites.lists_CreateOperations + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}': + get: + tags: + - sites.list + summary: Get operations from sites + operationId: sites.lists_GetOperations + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + - name: richLongRunningOperation-id + in: path + description: 'key: id of richLongRunningOperation' + required: true + schema: + type: string + x-ms-docs-key-type: richLongRunningOperation + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - createdDateTime + - lastActionDateTime + - resourceLocation + - status + - statusDetail + - error + - percentageComplete + - resourceId + - type + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - sites.list + summary: Update the navigation property operations in sites + operationId: sites.lists_UpdateOperations + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + - name: richLongRunningOperation-id + in: path + description: 'key: id of richLongRunningOperation' + required: true + schema: + type: string + x-ms-docs-key-type: richLongRunningOperation + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - sites.list + summary: Delete navigation property operations for sites + operationId: sites.lists_DeleteOperations + parameters: + - name: site-id + in: path + description: 'key: id of site' + required: true + schema: + type: string + x-ms-docs-key-type: site + - name: list-id + in: path + description: 'key: id of list' + required: true + schema: + type: string + x-ms-docs-key-type: list + - name: richLongRunningOperation-id + in: path + description: 'key: id of richLongRunningOperation' + required: true + schema: + type: string + x-ms-docs-key-type: richLongRunningOperation + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation '/sites/{site-id}/lists/{list-id}/subscriptions': get: tags: @@ -22298,6 +22939,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -22325,6 +22967,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -22442,6 +23085,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -22469,6 +23113,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -22533,6 +23178,11 @@ paths: parameters: site-id: $request.path.site-id site-id1: $request.path.site-id1 + operations: + operationId: sites.Sites.ListOperations + parameters: + site-id: $request.path.site-id + site-id1: $request.path.site-id1 pages: operationId: sites.Sites.ListPages parameters: @@ -22920,6 +23570,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -22947,6 +23598,7 @@ paths: - externalColumns - items - lists + - operations - pages - permissions - sites @@ -23147,6 +23799,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -23495,6 +24151,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -23777,6 +24437,28 @@ components: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' additionalProperties: type: object + microsoft.graph.richLongRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' + - title: richLongRunningOperation + type: object + properties: + error: + $ref: '#/components/schemas/microsoft.graph.publicError' + percentageComplete: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + resourceId: + type: string + nullable: true + type: + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.subscription: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -23789,7 +24471,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -23800,20 +24482,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -23821,15 +24503,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationContentType: type: string - description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. + description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -25322,6 +26004,57 @@ components: $ref: '#/components/schemas/microsoft.graph.publicationFacet' additionalProperties: type: object + microsoft.graph.longRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: longRunningOperation + type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + lastActionDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + resourceLocation: + type: string + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.longRunningOperationStatus' + statusDetail: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.publicError: + title: publicError + type: object + properties: + code: + type: string + description: Represents the error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: Details of the error. + innerError: + $ref: '#/components/schemas/microsoft.graph.publicInnerError' + message: + type: string + description: A non-localized message for the developer. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.operation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -25747,7 +26480,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' refreshTokensValidFromDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -25782,7 +26515,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -26722,6 +27455,56 @@ components: type: object additionalProperties: type: object + microsoft.graph.longRunningOperationStatus: + title: longRunningOperationStatus + enum: + - notStarted + - running + - succeeded + - failed + - unknownFutureValue + type: string + microsoft.graph.publicErrorDetail: + title: publicErrorDetail + type: object + properties: + code: + type: string + description: The error code. + nullable: true + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object + microsoft.graph.publicInnerError: + title: publicInnerError + type: object + properties: + code: + type: string + description: The error code. + nullable: true + details: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' + description: A collection of error details. + message: + type: string + description: The error message. + nullable: true + target: + type: string + description: The target of the error. + nullable: true + additionalProperties: + type: object microsoft.graph.operationStatus: title: operationStatus enum: @@ -26886,7 +27669,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -26896,7 +27679,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -27195,6 +27978,8 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true + userPurpose: + $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -28966,7 +29751,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -29279,7 +30064,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -29875,6 +30660,10 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' registration: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' + transcripts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.callTranscript' additionalProperties: type: object microsoft.graph.presence: @@ -29999,7 +30788,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -30506,6 +31295,18 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.userPurpose: + title: userPurpose + enum: + - unknown + - user + - linked + - shared + - room + - equipment + - others + - unknownFutureValue + type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -34199,6 +35000,8 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' + captions: + $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -34308,12 +35111,10 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' + - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' - title: meetingRegistration type: object properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -34355,11 +35156,23 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' - description: Registrants of the online meeting. + additionalProperties: + type: object + microsoft.graph.callTranscript: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: callTranscript + type: object + properties: + content: + type: string + format: base64url + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -34462,32 +35275,6 @@ components: $ref: '#/components/schemas/microsoft.graph.device' additionalProperties: type: object - microsoft.graph.longRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: longRunningOperation - type: object - properties: - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - lastActionDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - resourceLocation: - type: string - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.longRunningOperationStatus' - statusDetail: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -37535,6 +38322,26 @@ components: - everyone - unknownFutureValue type: string + microsoft.graph.broadcastMeetingCaptionSettings: + title: broadcastMeetingCaptionSettings + type: object + properties: + isCaptionEnabled: + type: boolean + description: Indicates whether caption is enabled for this Teams live event. + nullable: true + spokenLanguage: + type: string + description: The spoken language. + nullable: true + translationLanguages: + type: array + items: + type: string + nullable: true + description: The translation languages (choose up to 6). + additionalProperties: + type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -37570,16 +38377,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving. + description: List of time periods between joining and leaving a meeting. emailAddress: type: string - description: Email address. + description: Email address of the user associated with this atttendance record. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -37590,13 +38397,21 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string + microsoft.graph.meetingRegistrationBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrationBase + type: object + properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' + description: Registrants of the online meeting. + additionalProperties: + type: object microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -37635,43 +38450,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrant: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrant - type: object - properties: - customQuestionAnswers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' - description: The registrant's answer to custom questions. - email: - type: string - description: The email address of the registrant. - nullable: true - firstName: - type: string - description: The first name of the registrant. - nullable: true - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - lastName: - type: string - description: The last name of the registrant. - nullable: true - registrationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time in UTC when the registrant registers for the meeting. Read-only. - format: date-time - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -37679,15 +38457,6 @@ components: - notAttested - unknownFutureValue type: string - microsoft.graph.longRunningOperationStatus: - title: longRunningOperationStatus - enum: - - notStarted - - running - - succeeded - - failed - - unknownFutureValue - type: string microsoft.graph.authenticationPhoneType: title: authenticationPhoneType enum: @@ -39212,17 +39981,36 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee joined in UTC. + description: The time the attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee left in UTC. + description: The time the attendee left in UTC. format: date-time nullable: true additionalProperties: type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string + microsoft.graph.meetingRegistrantBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrantBase + type: object + properties: + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + additionalProperties: + type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -39230,32 +40018,6 @@ components: - radioButton - unknownFutureValue type: string - microsoft.graph.customQuestionAnswer: - title: customQuestionAnswer - type: object - properties: - displayName: - type: string - description: Display name of the custom registration question. Read-only. - nullable: true - questionId: - type: string - description: ID the custom registration question. Read-only. - nullable: true - value: - type: string - description: Answer to the custom registration question. - nullable: true - additionalProperties: - type: object - microsoft.graph.meetingRegistrantStatus: - title: meetingRegistrantStatus - enum: - - registered - - canceled - - processing - - unknownFutureValue - type: string microsoft.graph.teamworkUserIdentityType: title: teamworkUserIdentityType enum: diff --git a/openApiDocs/beta/Teams.yml b/openApiDocs/beta/Teams.yml index 3ca5b785a8d..ad990215c4e 100644 --- a/openApiDocs/beta/Teams.yml +++ b/openApiDocs/beta/Teams.yml @@ -18686,7 +18686,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -19902,7 +19902,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' refreshTokensValidFromDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -19937,7 +19937,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -21918,7 +21918,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -21929,20 +21929,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -21950,15 +21950,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationContentType: type: string - description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. + description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -22612,6 +22612,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -22721,7 +22725,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -22731,7 +22735,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -22987,6 +22991,8 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true + userPurpose: + $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -24125,7 +24131,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -24438,7 +24444,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -25012,6 +25018,10 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' registration: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' + transcripts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.callTranscript' additionalProperties: type: object microsoft.graph.presence: @@ -26500,6 +26510,10 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -26699,6 +26713,28 @@ components: description: The collection of column definitions for this contentType. additionalProperties: type: object + microsoft.graph.richLongRunningOperation: + allOf: + - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' + - title: richLongRunningOperation + type: object + properties: + error: + $ref: '#/components/schemas/microsoft.graph.publicError' + percentageComplete: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + resourceId: + type: string + nullable: true + type: + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -27019,6 +27055,18 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.userPurpose: + title: userPurpose + enum: + - unknown + - user + - linked + - shared + - room + - equipment + - others + - unknownFutureValue + type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -30114,6 +30162,8 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' + captions: + $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -30223,12 +30273,10 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' + - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' - title: meetingRegistration type: object properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -30270,11 +30318,23 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' - description: Registrants of the online meeting. + additionalProperties: + type: object + microsoft.graph.callTranscript: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: callTranscript + type: object + properties: + content: + type: string + format: base64url + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -33590,6 +33650,26 @@ components: - everyone - unknownFutureValue type: string + microsoft.graph.broadcastMeetingCaptionSettings: + title: broadcastMeetingCaptionSettings + type: object + properties: + isCaptionEnabled: + type: boolean + description: Indicates whether caption is enabled for this Teams live event. + nullable: true + spokenLanguage: + type: string + description: The spoken language. + nullable: true + translationLanguages: + type: array + items: + type: string + nullable: true + description: The translation languages (choose up to 6). + additionalProperties: + type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -33625,16 +33705,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving. + description: List of time periods between joining and leaving a meeting. emailAddress: type: string - description: Email address. + description: Email address of the user associated with this atttendance record. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -33645,13 +33725,21 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string + microsoft.graph.meetingRegistrationBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrationBase + type: object + properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' + description: Registrants of the online meeting. + additionalProperties: + type: object microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -33690,43 +33778,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrant: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrant - type: object - properties: - customQuestionAnswers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' - description: The registrant's answer to custom questions. - email: - type: string - description: The email address of the registrant. - nullable: true - firstName: - type: string - description: The first name of the registrant. - nullable: true - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - lastName: - type: string - description: The last name of the registrant. - nullable: true - registrationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time in UTC when the registrant registers for the meeting. Read-only. - format: date-time - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -34939,17 +34990,36 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee joined in UTC. + description: The time the attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Time attendee left in UTC. + description: The time the attendee left in UTC. format: date-time nullable: true additionalProperties: type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string + microsoft.graph.meetingRegistrantBase: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrantBase + type: object + properties: + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + additionalProperties: + type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -34957,32 +35027,6 @@ components: - radioButton - unknownFutureValue type: string - microsoft.graph.customQuestionAnswer: - title: customQuestionAnswer - type: object - properties: - displayName: - type: string - description: Display name of the custom registration question. Read-only. - nullable: true - questionId: - type: string - description: ID the custom registration question. Read-only. - nullable: true - value: - type: string - description: Answer to the custom registration question. - nullable: true - additionalProperties: - type: object - microsoft.graph.meetingRegistrantStatus: - title: meetingRegistrantStatus - enum: - - registered - - canceled - - processing - - unknownFutureValue - type: string microsoft.graph.linkedResource: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' diff --git a/openApiDocs/beta/Users.Actions.yml b/openApiDocs/beta/Users.Actions.yml index 2cbd9a9face..51f092ce04e 100644 --- a/openApiDocs/beta/Users.Actions.yml +++ b/openApiDocs/beta/Users.Actions.yml @@ -12558,7 +12558,7 @@ paths: tags: - users.Actions summary: Invoke action playLostModeSound - description: Play lost mode sound + description: Remote lock operationId: users.managedDevices_playLostModeSound parameters: - name: user-id @@ -12575,19 +12575,6 @@ paths: schema: type: string x-ms-docs-key-type: managedDevice - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - durationInMinutes: - type: string - nullable: true - additionalProperties: - type: object - required: true responses: '204': description: Success @@ -23269,7 +23256,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -24762,9 +24749,6 @@ components: - refreshUserPolicy - wakeUpClient - appEvaluation - - quickScan - - fullScan - - windowsDefenderUpdateSignatures type: string description: Action type on Configuration Manager client microsoft.graph.windowsDeviceAccount: @@ -24784,7 +24768,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -24794,7 +24778,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -25074,8 +25058,6 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true - userPurpose: - $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -26040,10 +26022,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -26515,7 +26493,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -26828,7 +26806,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -27459,7 +27437,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -27901,8 +27879,6 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' - captions: - $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -27973,10 +27949,12 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' + - $ref: '#/components/schemas/microsoft.graph.entity' - title: meetingRegistration type: object properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -28018,6 +27996,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' + description: Registrants of the online meeting. additionalProperties: type: object microsoft.graph.patternedRecurrence: @@ -28560,18 +28543,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.userPurpose: - title: userPurpose - enum: - - unknown - - user - - linked - - shared - - room - - equipment - - others - - unknownFutureValue - type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -29521,10 +29492,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -29755,28 +29722,6 @@ components: description: The collection of column definitions for this contentType. additionalProperties: type: object - microsoft.graph.richLongRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' - - title: richLongRunningOperation - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.publicError' - percentageComplete: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - resourceId: - type: string - nullable: true - type: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -33332,26 +33277,6 @@ components: - everyone - unknownFutureValue type: string - microsoft.graph.broadcastMeetingCaptionSettings: - title: broadcastMeetingCaptionSettings - type: object - properties: - isCaptionEnabled: - type: boolean - description: Indicates whether caption is enabled for this Teams live event. - nullable: true - spokenLanguage: - type: string - description: The spoken language. - nullable: true - translationLanguages: - type: array - items: - type: string - nullable: true - description: The translation languages (choose up to 6). - additionalProperties: - type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -33373,16 +33298,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. + description: List of time periods between joining and leaving. emailAddress: type: string - description: Email address of the user associated with this atttendance record. + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -33393,21 +33318,13 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrationBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrationBase - type: object - properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' - description: Registrants of the online meeting. - additionalProperties: - type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -33446,6 +33363,43 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.meetingRegistrant: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrant + type: object + properties: + customQuestionAnswers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' + description: The registrant's answer to custom questions. + email: + type: string + description: The email address of the registrant. + nullable: true + firstName: + type: string + description: The first name of the registrant. + nullable: true + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + lastName: + type: string + description: The last name of the registrant. + nullable: true + registrationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Time in UTC when the registrant registers for the meeting. Read-only. + format: date-time + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' + additionalProperties: + type: object microsoft.graph.recurrencePattern: title: recurrencePattern type: object @@ -34631,7 +34585,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -34642,20 +34596,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -34663,15 +34617,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationContentType: type: string - description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. + description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -35120,31 +35074,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicError: - title: publicError - type: object - properties: - code: - type: string - description: Represents the error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: Details of the error. - innerError: - $ref: '#/components/schemas/microsoft.graph.publicInnerError' - message: - type: string - description: A non-localized message for the developer. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.contentTypeInfo: title: contentTypeInfo type: object @@ -37264,36 +37193,17 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee joined in UTC. + description: Time attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee left in UTC. + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string - microsoft.graph.meetingRegistrantBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrantBase - type: object - properties: - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - additionalProperties: - type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -37301,6 +37211,32 @@ components: - radioButton - unknownFutureValue type: string + microsoft.graph.customQuestionAnswer: + title: customQuestionAnswer + type: object + properties: + displayName: + type: string + description: Display name of the custom registration question. Read-only. + nullable: true + questionId: + type: string + description: ID the custom registration question. Read-only. + nullable: true + value: + type: string + description: Answer to the custom registration question. + nullable: true + additionalProperties: + type: object + microsoft.graph.meetingRegistrantStatus: + title: meetingRegistrantStatus + enum: + - registered + - canceled + - processing + - unknownFutureValue + type: string microsoft.graph.weekIndex: title: weekIndex enum: @@ -37901,47 +37837,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicErrorDetail: - title: publicErrorDetail - type: object - properties: - code: - type: string - description: The error code. - nullable: true - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object - microsoft.graph.publicInnerError: - title: publicInnerError - type: object - properties: - code: - type: string - description: The error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: A collection of error details. - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.sitePageData: title: sitePageData type: object diff --git a/openApiDocs/beta/Users.yml b/openApiDocs/beta/Users.yml index 7dbc37ab76a..9929e590d10 100644 --- a/openApiDocs/beta/Users.yml +++ b/openApiDocs/beta/Users.yml @@ -12295,7 +12295,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -12662,7 +12662,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' + description: 'Sets how long (in seconds) this notification content will stay in each platform’s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user’s Windows Action Center.' format: int32 nullable: true expirationDateTime: @@ -13172,7 +13172,7 @@ components: lastNonInteractiveSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastNonInteractiveSignInRequestId: @@ -13182,7 +13182,7 @@ components: lastSignInDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' format: date-time nullable: true lastSignInRequestId: @@ -13481,8 +13481,6 @@ components: type: string description: The default time zone for the user's mailbox. nullable: true - userPurpose: - $ref: '#/components/schemas/microsoft.graph.userPurpose' userPurposeV2: $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' workingHours: @@ -14812,10 +14810,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' pages: type: array items: @@ -15287,7 +15281,7 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Device sku number, see also: GetProductInfo. Valid values 0 to 2147483647. This property is read-only.' + description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' format: int32 specificationVersion: type: string @@ -16282,7 +16276,7 @@ components: $ref: '#/components/schemas/microsoft.graph.chatViewpoint' webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -16768,18 +16762,6 @@ components: - sendToDelegateAndPrincipal - sendToDelegateOnly type: string - microsoft.graph.userPurpose: - title: userPurpose - enum: - - unknown - - user - - linked - - shared - - room - - equipment - - others - - unknownFutureValue - type: string microsoft.graph.mailboxRecipientType: title: mailboxRecipientType enum: @@ -17966,10 +17948,6 @@ components: items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' subscriptions: type: array items: @@ -18200,28 +18178,6 @@ components: description: The collection of column definitions for this contentType. additionalProperties: type: object - microsoft.graph.richLongRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' - - title: richLongRunningOperation - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.publicError' - percentageComplete: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - resourceId: - type: string - nullable: true - type: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' @@ -20934,8 +20890,6 @@ components: properties: allowedAudience: $ref: '#/components/schemas/microsoft.graph.broadcastMeetingAudience' - captions: - $ref: '#/components/schemas/microsoft.graph.broadcastMeetingCaptionSettings' isAttendeeReportEnabled: type: boolean description: Indicates whether attendee report is enabled for this Teams live event. Default value is false. @@ -21045,10 +20999,12 @@ components: type: object microsoft.graph.meetingRegistration: allOf: - - $ref: '#/components/schemas/microsoft.graph.meetingRegistrationBase' + - $ref: '#/components/schemas/microsoft.graph.entity' - title: meetingRegistration type: object properties: + allowedRegistrant: + $ref: '#/components/schemas/microsoft.graph.meetingAudience' description: type: string description: The description of the meeting. @@ -21090,6 +21046,11 @@ components: items: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' description: Custom registration questions. + registrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrant' + description: Registrants of the online meeting. additionalProperties: type: object microsoft.graph.outOfOfficeSettings: @@ -23454,7 +23415,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -23465,20 +23426,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -23486,15 +23447,15 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationContentType: type: string - description: Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. + description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type. nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -23943,31 +23904,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicError: - title: publicError - type: object - properties: - code: - type: string - description: Represents the error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: Details of the error. - innerError: - $ref: '#/components/schemas/microsoft.graph.publicInnerError' - message: - type: string - description: A non-localized message for the developer. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.contentTypeInfo: title: contentTypeInfo type: object @@ -25417,26 +25353,6 @@ components: - everyone - unknownFutureValue type: string - microsoft.graph.broadcastMeetingCaptionSettings: - title: broadcastMeetingCaptionSettings - type: object - properties: - isCaptionEnabled: - type: boolean - description: Indicates whether caption is enabled for this Teams live event. - nullable: true - spokenLanguage: - type: string - description: The spoken language. - nullable: true - translationLanguages: - type: array - items: - type: string - nullable: true - description: The translation languages (choose up to 6). - additionalProperties: - type: object microsoft.graph.lobbyBypassScope: title: lobbyBypassScope enum: @@ -25472,16 +25388,16 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. + description: List of time periods between joining and leaving. emailAddress: type: string - description: Email address of the user associated with this atttendance record. + description: Email address. nullable: true identity: $ref: '#/components/schemas/microsoft.graph.identity' role: type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + description: 'Role of the attendee. Possible values are None, Attendee, Presenter, and Organizer.' nullable: true totalAttendanceInSeconds: maximum: 2147483647 @@ -25492,21 +25408,13 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.meetingRegistrationBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrationBase - type: object - properties: - allowedRegistrant: - $ref: '#/components/schemas/microsoft.graph.meetingAudience' - registrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' - description: Registrants of the online meeting. - additionalProperties: - type: object + microsoft.graph.meetingAudience: + title: meetingAudience + enum: + - everyone + - organization + - unknownFutureValue + type: string microsoft.graph.meetingSpeaker: title: meetingSpeaker type: object @@ -25545,6 +25453,43 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.meetingRegistrant: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingRegistrant + type: object + properties: + customQuestionAnswers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customQuestionAnswer' + description: The registrant's answer to custom questions. + email: + type: string + description: The email address of the registrant. + nullable: true + firstName: + type: string + description: The first name of the registrant. + nullable: true + joinWebUrl: + type: string + description: A unique web URL for the registrant to join the meeting. Read-only. + nullable: true + lastName: + type: string + description: The last name of the registrant. + nullable: true + registrationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Time in UTC when the registrant registers for the meeting. Read-only. + format: date-time + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.meetingRegistrantStatus' + additionalProperties: + type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -26844,47 +26789,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.publicErrorDetail: - title: publicErrorDetail - type: object - properties: - code: - type: string - description: The error code. - nullable: true - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object - microsoft.graph.publicInnerError: - title: publicInnerError - type: object - properties: - code: - type: string - description: The error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: A collection of error details. - message: - type: string - description: The error message. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object microsoft.graph.sitePageData: title: sitePageData type: object @@ -27519,36 +27423,17 @@ components: joinDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee joined in UTC. + description: Time attendee joined in UTC. format: date-time nullable: true leaveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The time the attendee left in UTC. + description: Time attendee left in UTC. format: date-time nullable: true additionalProperties: type: object - microsoft.graph.meetingAudience: - title: meetingAudience - enum: - - everyone - - organization - - unknownFutureValue - type: string - microsoft.graph.meetingRegistrantBase: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingRegistrantBase - type: object - properties: - joinWebUrl: - type: string - description: A unique web URL for the registrant to join the meeting. Read-only. - nullable: true - additionalProperties: - type: object microsoft.graph.answerInputType: title: answerInputType enum: @@ -27556,6 +27441,32 @@ components: - radioButton - unknownFutureValue type: string + microsoft.graph.customQuestionAnswer: + title: customQuestionAnswer + type: object + properties: + displayName: + type: string + description: Display name of the custom registration question. Read-only. + nullable: true + questionId: + type: string + description: ID the custom registration question. Read-only. + nullable: true + value: + type: string + description: Answer to the custom registration question. + nullable: true + additionalProperties: + type: object + microsoft.graph.meetingRegistrantStatus: + title: meetingRegistrantStatus + enum: + - registered + - canceled + - processing + - unknownFutureValue + type: string microsoft.graph.teamworkUserIdentityType: title: teamworkUserIdentityType enum: diff --git a/openApiDocs/v1.0/CloudCommunications.yml b/openApiDocs/v1.0/CloudCommunications.yml index 90bb06b22bb..12bf9ffb662 100644 --- a/openApiDocs/v1.0/CloudCommunications.yml +++ b/openApiDocs/v1.0/CloudCommunications.yml @@ -2763,6 +2763,7 @@ paths: - startDateTime - subject - videoTeleconferenceId + - attendanceReports type: string - name: $expand in: query @@ -2775,6 +2776,7 @@ paths: items: enum: - '*' + - attendanceReports type: string responses: '200': @@ -2868,6 +2870,7 @@ paths: - startDateTime - subject - videoTeleconferenceId + - attendanceReports type: string - name: $expand in: query @@ -2880,6 +2883,7 @@ paths: items: enum: - '*' + - attendanceReports type: string responses: '200': @@ -2888,6 +2892,11 @@ paths: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + links: + attendanceReports: + operationId: communications.OnlineMeetings.ListAttendanceReports + parameters: + onlineMeeting-id: $request.path.onlineMeeting-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation @@ -2941,36 +2950,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport': + '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports': get: tags: - communications.onlineMeeting - summary: Get media content for the navigation property onlineMeetings from communications - operationId: communications_GetOnlineMeetingsAttendeeReport - parameters: - - name: onlineMeeting-id - in: path - description: 'key: id of onlineMeeting' - required: true - schema: - type: string - x-ms-docs-key-type: onlineMeeting - responses: - '200': - description: Retrieved media content - content: - application/octet-stream: - schema: - type: string - format: binary - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - put: - tags: - - communications.onlineMeeting - summary: Update media content for the navigation property onlineMeetings in communications - operationId: communications_SetOnlineMeetingsAttendeeReport + summary: Get attendanceReports from communications + description: The attendance reports of an online meeting. Read-only. + operationId: communications.onlineMeetings_ListAttendanceReports parameters: - name: onlineMeeting-id in: path @@ -2979,72 +2965,6 @@ paths: schema: type: string x-ms-docs-key-type: onlineMeeting - requestBody: - description: New media content. - content: - application/octet-stream: - schema: - type: string - format: binary - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /communications/onlineMeetings/microsoft.graph.createOrGet: - post: - tags: - - communications.Actions - summary: Invoke action createOrGet - operationId: communications.onlineMeetings_createOrGet - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - chatInfo: - $ref: '#/components/schemas/microsoft.graph.chatInfo' - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - externalId: - type: string - participants: - $ref: '#/components/schemas/microsoft.graph.meetingParticipants' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - subject: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - /communications/presences: - get: - tags: - - communications.presence - summary: Get presences from communications - operationId: communications_ListPresences - parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -3062,10 +2982,12 @@ paths: enum: - id - id desc - - activity - - activity desc - - availability - - availability desc + - meetingEndDateTime + - meetingEndDateTime desc + - meetingStartDateTime + - meetingStartDateTime desc + - totalParticipantCount + - totalParticipantCount desc type: string - name: $select in: query @@ -3078,8 +3000,10 @@ paths: items: enum: - id - - activity - - availability + - meetingEndDateTime + - meetingStartDateTime + - totalParticipantCount + - attendanceRecords type: string - name: $expand in: query @@ -3092,6 +3016,7 @@ paths: items: enum: - '*' + - attendanceRecords type: string responses: '200': @@ -3099,13 +3024,13 @@ paths: content: application/json: schema: - title: Collection of presence + title: Collection of meetingAttendanceReport type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.presence' + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' '@odata.nextLink': type: string additionalProperties: @@ -3118,15 +3043,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - communications.presence - summary: Create new navigation property to presences for communications - operationId: communications_CreatePresences + - communications.onlineMeeting + summary: Create new navigation property to attendanceReports for communications + description: The attendance reports of an online meeting. Read-only. + operationId: communications.onlineMeetings_CreateAttendanceReports + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.presence' + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: '201': @@ -3134,24 +3068,32 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.presence' + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/communications/presences/{presence-id}': + '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}': get: tags: - - communications.presence - summary: Get presences from communications - operationId: communications_GetPresences + - communications.onlineMeeting + summary: Get attendanceReports from communications + description: The attendance reports of an online meeting. Read-only. + operationId: communications.onlineMeetings_GetAttendanceReports parameters: - - name: presence-id + - name: onlineMeeting-id in: path - description: 'key: id of presence' + description: 'key: id of onlineMeeting' required: true schema: type: string - x-ms-docs-key-type: presence + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport - name: $select in: query description: Select properties to be returned @@ -3163,8 +3105,10 @@ paths: items: enum: - id - - activity - - availability + - meetingEndDateTime + - meetingStartDateTime + - totalParticipantCount + - attendanceRecords type: string - name: $expand in: query @@ -3177,6 +3121,7 @@ paths: items: enum: - '*' + - attendanceRecords type: string responses: '200': @@ -3184,29 +3129,43 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.presence' + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + links: + attendanceRecords: + operationId: communications.onlineMeetings.AttendanceReports.ListAttendanceRecords + parameters: + onlineMeeting-id: $request.path.onlineMeeting-id + meetingAttendanceReport-id: $request.path.meetingAttendanceReport-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - communications.presence - summary: Update the navigation property presences in communications - operationId: communications_UpdatePresences + - communications.onlineMeeting + summary: Update the navigation property attendanceReports in communications + description: The attendance reports of an online meeting. Read-only. + operationId: communications.onlineMeetings_UpdateAttendanceReports parameters: - - name: presence-id + - name: onlineMeeting-id in: path - description: 'key: id of presence' + description: 'key: id of onlineMeeting' required: true schema: type: string - x-ms-docs-key-type: presence + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.presence' + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: '204': @@ -3216,17 +3175,25 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - communications.presence - summary: Delete navigation property presences for communications - operationId: communications_DeletePresences + - communications.onlineMeeting + summary: Delete navigation property attendanceReports for communications + description: The attendance reports of an online meeting. Read-only. + operationId: communications.onlineMeetings_DeleteAttendanceReports parameters: - - name: presence-id + - name: onlineMeeting-id in: path - description: 'key: id of presence' + description: 'key: id of onlineMeeting' required: true schema: type: string - x-ms-docs-key-type: presence + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport - name: If-Match in: header description: ETag @@ -3238,87 +3205,1290 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/communications/presences/{presence-id}/microsoft.graph.clearPresence': - post: + '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords': + get: tags: - - communications.Actions - summary: Invoke action clearPresence - operationId: communications.presences_clearPresence + - communications.onlineMeeting + summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. + operationId: communications.onlineMeetings.attendanceReports_ListAttendanceRecords parameters: - - name: presence-id + - name: onlineMeeting-id in: path - description: 'key: id of presence' + description: 'key: id of onlineMeeting' required: true schema: type: string - x-ms-docs-key-type: presence - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - sessionId: - type: string - nullable: true - additionalProperties: - type: object - required: true + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - attendanceIntervals + - attendanceIntervals desc + - emailAddress + - emailAddress desc + - identity + - identity desc + - role + - role desc + - totalAttendanceInSeconds + - totalAttendanceInSeconds desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - attendanceIntervals + - emailAddress + - identity + - role + - totalAttendanceInSeconds + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string responses: - '204': - description: Success + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of attendanceRecord + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + '@odata.nextLink': + type: string + additionalProperties: + type: object default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/communications/presences/{presence-id}/microsoft.graph.setPresence': + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - communications.onlineMeeting + summary: Create new navigation property to attendanceRecords for communications + description: List of attendance records of an attendance report. Read-only. + operationId: communications.onlineMeetings.attendanceReports_CreateAttendanceRecords + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}': + get: + tags: + - communications.onlineMeeting + summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. + operationId: communications.onlineMeetings.attendanceReports_GetAttendanceRecords + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - attendanceIntervals + - emailAddress + - identity + - role + - totalAttendanceInSeconds + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - communications.onlineMeeting + summary: Update the navigation property attendanceRecords in communications + description: List of attendance records of an attendance report. Read-only. + operationId: communications.onlineMeetings.attendanceReports_UpdateAttendanceRecords + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - communications.onlineMeeting + summary: Delete navigation property attendanceRecords for communications + description: List of attendance records of an attendance report. Read-only. + operationId: communications.onlineMeetings.attendanceReports_DeleteAttendanceRecords + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport': + get: + tags: + - communications.onlineMeeting + summary: Get media content for the navigation property onlineMeetings from communications + operationId: communications_GetOnlineMeetingsAttendeeReport + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + responses: + '200': + description: Retrieved media content + content: + application/octet-stream: + schema: + type: string + format: binary + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + put: + tags: + - communications.onlineMeeting + summary: Update media content for the navigation property onlineMeetings in communications + operationId: communications_SetOnlineMeetingsAttendeeReport + parameters: + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + requestBody: + description: New media content. + content: + application/octet-stream: + schema: + type: string + format: binary + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /communications/onlineMeetings/microsoft.graph.createOrGet: + post: + tags: + - communications.Actions + summary: Invoke action createOrGet + operationId: communications.onlineMeetings_createOrGet + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + chatInfo: + $ref: '#/components/schemas/microsoft.graph.chatInfo' + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + externalId: + type: string + participants: + $ref: '#/components/schemas/microsoft.graph.meetingParticipants' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + subject: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + /communications/presences: + get: + tags: + - communications.presence + summary: Get presences from communications + operationId: communications_ListPresences + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - activity + - activity desc + - availability + - availability desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - activity + - availability + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of presence + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.presence' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - communications.presence + summary: Create new navigation property to presences for communications + operationId: communications_CreatePresences + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.presence' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.presence' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/communications/presences/{presence-id}': + get: + tags: + - communications.presence + summary: Get presences from communications + operationId: communications_GetPresences + parameters: + - name: presence-id + in: path + description: 'key: id of presence' + required: true + schema: + type: string + x-ms-docs-key-type: presence + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - activity + - availability + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.presence' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - communications.presence + summary: Update the navigation property presences in communications + operationId: communications_UpdatePresences + parameters: + - name: presence-id + in: path + description: 'key: id of presence' + required: true + schema: + type: string + x-ms-docs-key-type: presence + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.presence' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - communications.presence + summary: Delete navigation property presences for communications + operationId: communications_DeletePresences + parameters: + - name: presence-id + in: path + description: 'key: id of presence' + required: true + schema: + type: string + x-ms-docs-key-type: presence + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/communications/presences/{presence-id}/microsoft.graph.clearPresence': + post: + tags: + - communications.Actions + summary: Invoke action clearPresence + operationId: communications.presences_clearPresence + parameters: + - name: presence-id + in: path + description: 'key: id of presence' + required: true + schema: + type: string + x-ms-docs-key-type: presence + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/communications/presences/{presence-id}/microsoft.graph.setPresence': + post: + tags: + - communications.Actions + summary: Invoke action setPresence + operationId: communications.presences_setPresence + parameters: + - name: presence-id + in: path + description: 'key: id of presence' + required: true + schema: + type: string + x-ms-docs-key-type: presence + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionId: + type: string + nullable: true + availability: + type: string + activity: + type: string + expirationDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + format: duration + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/users/{user-id}/onlineMeetings': + get: + tags: + - users.onlineMeeting + summary: Get onlineMeetings from users + operationId: users_ListOnlineMeetings + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - allowAttendeeToEnableCamera + - allowAttendeeToEnableCamera desc + - allowAttendeeToEnableMic + - allowAttendeeToEnableMic desc + - allowedPresenters + - allowedPresenters desc + - allowMeetingChat + - allowMeetingChat desc + - allowTeamworkReactions + - allowTeamworkReactions desc + - attendeeReport + - attendeeReport desc + - audioConferencing + - audioConferencing desc + - broadcastSettings + - broadcastSettings desc + - chatInfo + - chatInfo desc + - creationDateTime + - creationDateTime desc + - endDateTime + - endDateTime desc + - externalId + - externalId desc + - isBroadcast + - isBroadcast desc + - isEntryExitAnnounced + - isEntryExitAnnounced desc + - joinInformation + - joinInformation desc + - joinWebUrl + - joinWebUrl desc + - lobbyBypassSettings + - lobbyBypassSettings desc + - participants + - participants desc + - recordAutomatically + - recordAutomatically desc + - startDateTime + - startDateTime desc + - subject + - subject desc + - videoTeleconferenceId + - videoTeleconferenceId desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - allowAttendeeToEnableCamera + - allowAttendeeToEnableMic + - allowedPresenters + - allowMeetingChat + - allowTeamworkReactions + - attendeeReport + - audioConferencing + - broadcastSettings + - chatInfo + - creationDateTime + - endDateTime + - externalId + - isBroadcast + - isEntryExitAnnounced + - joinInformation + - joinWebUrl + - lobbyBypassSettings + - participants + - recordAutomatically + - startDateTime + - subject + - videoTeleconferenceId + - attendanceReports + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - attendanceReports + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of onlineMeeting + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - users.onlineMeeting + summary: Create new navigation property to onlineMeetings for users + operationId: users_CreateOnlineMeetings + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/users/{user-id}/onlineMeetings/{onlineMeeting-id}': + get: + tags: + - users.onlineMeeting + summary: Get onlineMeetings from users + operationId: users_GetOnlineMeetings + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - allowAttendeeToEnableCamera + - allowAttendeeToEnableMic + - allowedPresenters + - allowMeetingChat + - allowTeamworkReactions + - attendeeReport + - audioConferencing + - broadcastSettings + - chatInfo + - creationDateTime + - endDateTime + - externalId + - isBroadcast + - isEntryExitAnnounced + - joinInformation + - joinWebUrl + - lobbyBypassSettings + - participants + - recordAutomatically + - startDateTime + - subject + - videoTeleconferenceId + - attendanceReports + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - attendanceReports + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + links: + attendanceReports: + operationId: users.OnlineMeetings.ListAttendanceReports + parameters: + user-id: $request.path.user-id + onlineMeeting-id: $request.path.onlineMeeting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - users.onlineMeeting + summary: Update the navigation property onlineMeetings in users + operationId: users_UpdateOnlineMeetings + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - users.onlineMeeting + summary: Delete navigation property onlineMeetings for users + operationId: users_DeleteOnlineMeetings + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: If-Match + in: header + description: ETag + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports': + get: + tags: + - users.onlineMeeting + summary: Get attendanceReports from users + description: The attendance reports of an online meeting. Read-only. + operationId: users.onlineMeetings_ListAttendanceReports + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - meetingEndDateTime + - meetingEndDateTime desc + - meetingStartDateTime + - meetingStartDateTime desc + - totalParticipantCount + - totalParticipantCount desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - meetingEndDateTime + - meetingStartDateTime + - totalParticipantCount + - attendanceRecords + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - attendanceRecords + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + title: Collection of meetingAttendanceReport + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation post: tags: - - communications.Actions - summary: Invoke action setPresence - operationId: communications.presences_setPresence + - users.onlineMeeting + summary: Create new navigation property to attendanceReports for users + description: The attendance reports of an online meeting. Read-only. + operationId: users.onlineMeetings_CreateAttendanceReports parameters: - - name: presence-id + - name: user-id in: path - description: 'key: id of presence' + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}': + get: + tags: + - users.onlineMeeting + summary: Get attendanceReports from users + description: The attendance reports of an online meeting. Read-only. + operationId: users.onlineMeetings_GetAttendanceReports + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - meetingEndDateTime + - meetingStartDateTime + - totalParticipantCount + - attendanceRecords + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - attendanceRecords + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + links: + attendanceRecords: + operationId: users.onlineMeetings.AttendanceReports.ListAttendanceRecords + parameters: + user-id: $request.path.user-id + onlineMeeting-id: $request.path.onlineMeeting-id + meetingAttendanceReport-id: $request.path.meetingAttendanceReport-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - users.onlineMeeting + summary: Update the navigation property attendanceReports in users + description: The attendance reports of an online meeting. Read-only. + operationId: users.onlineMeetings_UpdateAttendanceReports + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - users.onlineMeeting + summary: Delete navigation property attendanceReports for users + description: The attendance reports of an online meeting. Read-only. + operationId: users.onlineMeetings_DeleteAttendanceReports + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + schema: + type: string + x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' required: true schema: type: string - x-ms-docs-key-type: presence - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - sessionId: - type: string - nullable: true - availability: - type: string - activity: - type: string - expirationDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - format: duration - nullable: true - additionalProperties: - type: object - required: true + x-ms-docs-key-type: meetingAttendanceReport + - name: If-Match + in: header + description: ETag + schema: + type: string responses: '204': description: Success default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/users/{user-id}/onlineMeetings': + x-ms-docs-operation-type: operation + '/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords': get: tags: - users.onlineMeeting - summary: Get onlineMeetings from users - operationId: users_ListOnlineMeetings + summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. + operationId: users.onlineMeetings.attendanceReports_ListAttendanceRecords parameters: - name: user-id in: path @@ -3327,6 +4497,20 @@ paths: schema: type: string x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -3344,50 +4528,16 @@ paths: enum: - id - id desc - - allowAttendeeToEnableCamera - - allowAttendeeToEnableCamera desc - - allowAttendeeToEnableMic - - allowAttendeeToEnableMic desc - - allowedPresenters - - allowedPresenters desc - - allowMeetingChat - - allowMeetingChat desc - - allowTeamworkReactions - - allowTeamworkReactions desc - - attendeeReport - - attendeeReport desc - - audioConferencing - - audioConferencing desc - - broadcastSettings - - broadcastSettings desc - - chatInfo - - chatInfo desc - - creationDateTime - - creationDateTime desc - - endDateTime - - endDateTime desc - - externalId - - externalId desc - - isBroadcast - - isBroadcast desc - - isEntryExitAnnounced - - isEntryExitAnnounced desc - - joinInformation - - joinInformation desc - - joinWebUrl - - joinWebUrl desc - - lobbyBypassSettings - - lobbyBypassSettings desc - - participants - - participants desc - - recordAutomatically - - recordAutomatically desc - - startDateTime - - startDateTime desc - - subject - - subject desc - - videoTeleconferenceId - - videoTeleconferenceId desc + - attendanceIntervals + - attendanceIntervals desc + - emailAddress + - emailAddress desc + - identity + - identity desc + - role + - role desc + - totalAttendanceInSeconds + - totalAttendanceInSeconds desc type: string - name: $select in: query @@ -3400,28 +4550,11 @@ paths: items: enum: - id - - allowAttendeeToEnableCamera - - allowAttendeeToEnableMic - - allowedPresenters - - allowMeetingChat - - allowTeamworkReactions - - attendeeReport - - audioConferencing - - broadcastSettings - - chatInfo - - creationDateTime - - endDateTime - - externalId - - isBroadcast - - isEntryExitAnnounced - - joinInformation - - joinWebUrl - - lobbyBypassSettings - - participants - - recordAutomatically - - startDateTime - - subject - - videoTeleconferenceId + - attendanceIntervals + - emailAddress + - identity + - role + - totalAttendanceInSeconds type: string - name: $expand in: query @@ -3441,13 +4574,13 @@ paths: content: application/json: schema: - title: Collection of onlineMeeting + title: Collection of attendanceRecord type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' '@odata.nextLink': type: string additionalProperties: @@ -3461,8 +4594,9 @@ paths: post: tags: - users.onlineMeeting - summary: Create new navigation property to onlineMeetings for users - operationId: users_CreateOnlineMeetings + summary: Create new navigation property to attendanceRecords for users + description: List of attendance records of an attendance report. Read-only. + operationId: users.onlineMeetings.attendanceReports_CreateAttendanceRecords parameters: - name: user-id in: path @@ -3471,12 +4605,26 @@ paths: schema: type: string x-ms-docs-key-type: user + - name: onlineMeeting-id + in: path + description: 'key: id of onlineMeeting' + required: true + schema: + type: string + x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: '201': @@ -3484,16 +4632,17 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/users/{user-id}/onlineMeetings/{onlineMeeting-id}': + '/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}': get: tags: - users.onlineMeeting - summary: Get onlineMeetings from users - operationId: users_GetOnlineMeetings + summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. + operationId: users.onlineMeetings.attendanceReports_GetAttendanceRecords parameters: - name: user-id in: path @@ -3509,6 +4658,20 @@ paths: schema: type: string x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord - name: $select in: query description: Select properties to be returned @@ -3520,28 +4683,11 @@ paths: items: enum: - id - - allowAttendeeToEnableCamera - - allowAttendeeToEnableMic - - allowedPresenters - - allowMeetingChat - - allowTeamworkReactions - - attendeeReport - - audioConferencing - - broadcastSettings - - chatInfo - - creationDateTime - - endDateTime - - externalId - - isBroadcast - - isEntryExitAnnounced - - joinInformation - - joinWebUrl - - lobbyBypassSettings - - participants - - recordAutomatically - - startDateTime - - subject - - videoTeleconferenceId + - attendanceIntervals + - emailAddress + - identity + - role + - totalAttendanceInSeconds type: string - name: $expand in: query @@ -3561,15 +4707,16 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - users.onlineMeeting - summary: Update the navigation property onlineMeetings in users - operationId: users_UpdateOnlineMeetings + summary: Update the navigation property attendanceRecords in users + description: List of attendance records of an attendance report. Read-only. + operationId: users.onlineMeetings.attendanceReports_UpdateAttendanceRecords parameters: - name: user-id in: path @@ -3585,12 +4732,26 @@ paths: schema: type: string x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: '204': @@ -3601,8 +4762,9 @@ paths: delete: tags: - users.onlineMeeting - summary: Delete navigation property onlineMeetings for users - operationId: users_DeleteOnlineMeetings + summary: Delete navigation property attendanceRecords for users + description: List of attendance records of an attendance report. Read-only. + operationId: users.onlineMeetings.attendanceReports_DeleteAttendanceRecords parameters: - name: user-id in: path @@ -3618,6 +4780,20 @@ paths: schema: type: string x-ms-docs-key-type: onlineMeeting + - name: meetingAttendanceReport-id + in: path + description: 'key: id of meetingAttendanceReport' + required: true + schema: + type: string + x-ms-docs-key-type: meetingAttendanceReport + - name: attendanceRecord-id + in: path + description: 'key: id of attendanceRecord' + required: true + schema: + type: string + x-ms-docs-key-type: attendanceRecord - name: If-Match in: header description: ETag @@ -4398,6 +5574,73 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true + attendanceReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + description: The attendance reports of an online meeting. Read-only. + additionalProperties: + type: object + microsoft.graph.meetingAttendanceReport: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingAttendanceReport + type: object + properties: + meetingEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting ended. Read-only. + format: date-time + nullable: true + meetingStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting started. Read-only. + format: date-time + nullable: true + totalParticipantCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total number of participants. Read-only. + format: int32 + nullable: true + attendanceRecords: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: List of attendance records of an attendance report. Read-only. + additionalProperties: + type: object + microsoft.graph.attendanceRecord: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: attendanceRecord + type: object + properties: + attendanceIntervals: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving a meeting. + emailAddress: + type: string + description: Email address of the user associated with this atttendance record. + nullable: true + identity: + $ref: '#/components/schemas/microsoft.graph.identity' + role: + type: string + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + nullable: true + totalAttendanceInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total duration of the attendances in seconds. + format: int32 + nullable: true additionalProperties: type: object microsoft.graph.chatInfo: @@ -4907,6 +6150,45 @@ components: $ref: '#/components/schemas/microsoft.graph.lobbyBypassScope' additionalProperties: type: object + microsoft.graph.attendanceInterval: + title: attendanceInterval + type: object + properties: + durationInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' + format: int32 + nullable: true + joinDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee joined in UTC. + format: date-time + nullable: true + leaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee left in UTC. + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.identity: + title: identity + type: object + properties: + displayName: + type: string + description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + nullable: true + id: + type: string + description: Unique identifier for the identity. + nullable: true + additionalProperties: + type: object microsoft.graph.meetingParticipantInfo: title: meetingParticipantInfo type: object @@ -4930,20 +6212,6 @@ components: $ref: '#/components/schemas/odata.error.main' additionalProperties: type: object - microsoft.graph.identity: - title: identity - type: object - properties: - displayName: - type: string - description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' - nullable: true - id: - type: string - description: Unique identifier for the identity. - nullable: true - additionalProperties: - type: object microsoft.graph.callRecords.userAgent: title: userAgent type: object diff --git a/openApiDocs/v1.0/Devices.CloudPrint.yml b/openApiDocs/v1.0/Devices.CloudPrint.yml index bcbaafad753..fe467c6caf6 100644 --- a/openApiDocs/v1.0/Devices.CloudPrint.yml +++ b/openApiDocs/v1.0/Devices.CloudPrint.yml @@ -5192,7 +5192,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' @@ -5221,7 +5221,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -6513,6 +6513,12 @@ components: type: string description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here.' nullable: true + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the state of the license assignment was last updated. + format: date-time + nullable: true skuId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string @@ -7788,6 +7794,11 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true + attendanceReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + description: The attendance reports of an online meeting. Read-only. additionalProperties: type: object microsoft.graph.presence: @@ -7856,7 +7867,7 @@ components: nullable: true webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -10867,6 +10878,38 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: type: object + microsoft.graph.meetingAttendanceReport: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingAttendanceReport + type: object + properties: + meetingEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting ended. Read-only. + format: date-time + nullable: true + meetingStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting started. Read-only. + format: date-time + nullable: true + totalParticipantCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total number of participants. Read-only. + format: int32 + nullable: true + attendanceRecords: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: List of attendance records of an attendance report. Read-only. + additionalProperties: + type: object microsoft.graph.fido2AuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -12986,7 +13029,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -12997,20 +13040,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -13018,11 +13061,11 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -14796,6 +14839,36 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.attendanceRecord: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: attendanceRecord + type: object + properties: + attendanceIntervals: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving a meeting. + emailAddress: + type: string + description: Email address of the user associated with this atttendance record. + nullable: true + identity: + $ref: '#/components/schemas/microsoft.graph.identity' + role: + type: string + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + nullable: true + totalAttendanceInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total duration of the attendances in seconds. + format: int32 + nullable: true + additionalProperties: + type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -16046,6 +16119,31 @@ components: - unknownFutureValue - producer type: string + microsoft.graph.attendanceInterval: + title: attendanceInterval + type: object + properties: + durationInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' + format: int32 + nullable: true + joinDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee joined in UTC. + format: date-time + nullable: true + leaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee left in UTC. + format: date-time + nullable: true + additionalProperties: + type: object microsoft.graph.alternativeSecurityId: title: alternativeSecurityId type: object diff --git a/openApiDocs/v1.0/Education.yml b/openApiDocs/v1.0/Education.yml index 5dc9b61891b..8ff02318817 100644 --- a/openApiDocs/v1.0/Education.yml +++ b/openApiDocs/v1.0/Education.yml @@ -644,7 +644,6 @@ paths: enum: - id - addedStudentAction - - addToCalendarAction - dueTime - notificationChannelUrl type: string @@ -754,8 +753,6 @@ paths: - id desc - addedStudentAction - addedStudentAction desc - - addToCalendarAction - - addToCalendarAction desc - allowLateSubmissions - allowLateSubmissions desc - allowStudentsToAddResourcesToSubmission @@ -807,7 +804,6 @@ paths: enum: - id - addedStudentAction - - addToCalendarAction - allowLateSubmissions - allowStudentsToAddResourcesToSubmission - assignDateTime @@ -936,7 +932,6 @@ paths: enum: - id - addedStudentAction - - addToCalendarAction - allowLateSubmissions - allowStudentsToAddResourcesToSubmission - assignDateTime @@ -1854,10 +1849,6 @@ paths: enum: - id - id desc - - reassignedBy - - reassignedBy desc - - reassignedDateTime - - reassignedDateTime desc - recipient - recipient desc - resourcesFolderUrl @@ -1888,8 +1879,6 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - recipient - resourcesFolderUrl - returnedBy @@ -2019,8 +2008,6 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - recipient - resourcesFolderUrl - returnedBy @@ -2158,44 +2145,6 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign': - post: - tags: - - education.Actions - summary: Invoke action reassign - operationId: education.classes.assignments.submissions_reassign - parameters: - - name: educationClass-id - in: path - description: 'key: id of educationClass' - required: true - schema: - type: string - x-ms-docs-key-type: educationClass - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action '/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return': post: tags: @@ -3959,7 +3908,6 @@ paths: - usageLocation - userPrincipalName - userType - - assignments - rubrics - classes - schools @@ -3977,7 +3925,6 @@ paths: items: enum: - '*' - - assignments - rubrics - classes - schools @@ -4606,7 +4553,6 @@ paths: - usageLocation - userPrincipalName - userType - - assignments - rubrics - classes - schools @@ -4624,7 +4570,6 @@ paths: items: enum: - '*' - - assignments - rubrics - classes - schools @@ -4903,7 +4848,6 @@ paths: - usageLocation - userPrincipalName - userType - - assignments - rubrics - classes - schools @@ -4921,7 +4865,6 @@ paths: items: enum: - '*' - - assignments - rubrics - classes - schools @@ -4936,8 +4879,6 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.educationUser' links: - assignments: - operationId: education.Me.ListAssignments rubrics: operationId: education.Me.ListRubrics classes: @@ -4986,13 +4927,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /education/me/assignments: + /education/me/classes: get: tags: - education.educationUser - summary: Get assignments from education - description: Assignments belonging to the user. - operationId: education.me_ListAssignments + summary: Get classes from education + description: Classes to which the user belongs. Nullable. + operationId: education.me_ListClasses parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -5011,48 +4952,30 @@ paths: enum: - id - id desc - - addedStudentAction - - addedStudentAction desc - - addToCalendarAction - - addToCalendarAction desc - - allowLateSubmissions - - allowLateSubmissions desc - - allowStudentsToAddResourcesToSubmission - - allowStudentsToAddResourcesToSubmission desc - - assignDateTime - - assignDateTime desc - - assignedDateTime - - assignedDateTime desc - - assignTo - - assignTo desc - - classId - - classId desc - - closeDateTime - - closeDateTime desc + - classCode + - classCode desc + - course + - course desc - createdBy - createdBy desc - - createdDateTime - - createdDateTime desc + - description + - description desc - displayName - displayName desc - - dueDateTime - - dueDateTime desc - - grading - - grading desc - - instructions - - instructions desc - - lastModifiedBy - - lastModifiedBy desc - - lastModifiedDateTime - - lastModifiedDateTime desc - - notificationChannelUrl - - notificationChannelUrl desc - - resourcesFolderUrl - - resourcesFolderUrl desc - - status - - status desc - - webUrl - - webUrl desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc type: string - name: $select in: query @@ -5065,31 +4988,26 @@ paths: items: enum: - id - - addedStudentAction - - addToCalendarAction - - allowLateSubmissions - - allowStudentsToAddResourcesToSubmission - - assignDateTime - - assignedDateTime - - assignTo - - classId - - closeDateTime + - classCode + - course - createdBy - - createdDateTime + - description - displayName - - dueDateTime - - grading - - instructions - - lastModifiedBy - - lastModifiedDateTime - - notificationChannelUrl - - resourcesFolderUrl - - status - - webUrl - - categories - - resources - - rubric - - submissions + - externalId + - externalName + - externalSource + - externalSourceDetail + - grade + - mailNickname + - term + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string - name: $expand in: query @@ -5102,10 +5020,14 @@ paths: items: enum: - '*' - - categories - - resources - - rubric - - submissions + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string responses: '200': @@ -5113,13 +5035,86 @@ paths: content: application/json: schema: - title: Collection of educationAssignment + title: Collection of educationClass type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' + $ref: '#/components/schemas/microsoft.graph.educationClass' + '@odata.nextLink': + type: string + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + /education/me/classes/$ref: + get: + tags: + - education.educationUser + summary: Get ref of classes from education + description: Classes to which the user belongs. Nullable. + operationId: education.me_ListGraphRefClasses + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - classCode + - classCode desc + - course + - course desc + - createdBy + - createdBy desc + - description + - description desc + - displayName + - displayName desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc + type: string + responses: + '200': + description: Retrieved navigation property links + content: + application/json: + schema: + title: Collection of links of educationClass + type: object + properties: + value: + type: array + items: + type: string '@odata.nextLink': type: string additionalProperties: @@ -5133,188 +5128,55 @@ paths: post: tags: - education.educationUser - summary: Create new navigation property to assignments for education - description: Assignments belonging to the user. - operationId: education.me_CreateAssignments + summary: Create new navigation property ref to classes for education + description: Classes to which the user belongs. Nullable. + operationId: education.me_CreateGraphRefClasses requestBody: - description: New navigation property + description: New navigation property ref value content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' + type: object + additionalProperties: + type: object required: true responses: '201': - description: Created navigation property. + description: Created navigation property link. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' + type: object + additionalProperties: + type: object default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}': + /education/me/classes/microsoft.graph.delta(): get: tags: - - education.educationUser - summary: Get assignments from education - description: Assignments belonging to the user. - operationId: education.me_GetAssignments - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - addedStudentAction - - addToCalendarAction - - allowLateSubmissions - - allowStudentsToAddResourcesToSubmission - - assignDateTime - - assignedDateTime - - assignTo - - classId - - closeDateTime - - createdBy - - createdDateTime - - displayName - - dueDateTime - - grading - - instructions - - lastModifiedBy - - lastModifiedDateTime - - notificationChannelUrl - - resourcesFolderUrl - - status - - webUrl - - categories - - resources - - rubric - - submissions - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - categories - - resources - - rubric - - submissions - type: string + - education.Functions + summary: Invoke function delta + operationId: education.me.classes_delta responses: '200': - description: Retrieved navigation property + description: Success content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - links: - categories: - operationId: education.me.Assignments.ListCategories - parameters: - educationAssignment-id: $request.path.educationAssignment-id - resources: - operationId: education.me.Assignments.ListResources - parameters: - educationAssignment-id: $request.path.educationAssignment-id - rubric: - operationId: education.me.Assignments.GetRubric - parameters: - educationAssignment-id: $request.path.educationAssignment-id - submissions: - operationId: education.me.Assignments.ListSubmissions - parameters: - educationAssignment-id: $request.path.educationAssignment-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property assignments in education - description: Assignments belonging to the user. - operationId: education.me_UpdateAssignments - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property assignments for education - description: Assignments belonging to the user. - operationId: education.me_DeleteAssignments - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationClass' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/categories': + x-ms-docs-operation-type: function + /education/me/rubrics: get: tags: - education.educationUser - summary: Get categories from education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.me.assignments_ListCategories + summary: Get rubrics from education + operationId: education.me_ListRubrics parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -5332,8 +5194,24 @@ paths: enum: - id - id desc + - createdBy + - createdBy desc + - createdDateTime + - createdDateTime desc + - description + - description desc - displayName - displayName desc + - grading + - grading desc + - lastModifiedBy + - lastModifiedBy desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - levels + - levels desc + - qualities + - qualities desc type: string - name: $select in: query @@ -5346,7 +5224,15 @@ paths: items: enum: - id + - createdBy + - createdDateTime + - description - displayName + - grading + - lastModifiedBy + - lastModifiedDateTime + - levels + - qualities type: string - name: $expand in: query @@ -5366,13 +5252,13 @@ paths: content: application/json: schema: - title: Collection of educationCategory + title: Collection of educationRubric type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationCategory' + $ref: '#/components/schemas/microsoft.graph.educationRubric' '@odata.nextLink': type: string additionalProperties: @@ -5386,23 +5272,14 @@ paths: post: tags: - education.educationUser - summary: Create new navigation property to categories for education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.me.assignments_CreateCategories - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment + summary: Create new navigation property to rubrics for education + operationId: education.me_CreateRubrics requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' + $ref: '#/components/schemas/microsoft.graph.educationRubric' required: true responses: '201': @@ -5410,32 +5287,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' + $ref: '#/components/schemas/microsoft.graph.educationRubric' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}': + '/education/me/rubrics/{educationRubric-id}': get: tags: - education.educationUser - summary: Get categories from education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.me.assignments_GetCategories + summary: Get rubrics from education + operationId: education.me_GetRubrics parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id + - name: educationRubric-id in: path - description: 'key: id of educationCategory' + description: 'key: id of educationRubric' required: true schema: type: string - x-ms-docs-key-type: educationCategory + x-ms-docs-key-type: educationRubric - name: $select in: query description: Select properties to be returned @@ -5447,7 +5316,15 @@ paths: items: enum: - id + - createdBy + - createdDateTime + - description - displayName + - grading + - lastModifiedBy + - lastModifiedDateTime + - levels + - qualities type: string - name: $expand in: query @@ -5467,37 +5344,29 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' + $ref: '#/components/schemas/microsoft.graph.educationRubric' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - education.educationUser - summary: Update the navigation property categories in education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.me.assignments_UpdateCategories + summary: Update the navigation property rubrics in education + operationId: education.me_UpdateRubrics parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id + - name: educationRubric-id in: path - description: 'key: id of educationCategory' + description: 'key: id of educationRubric' required: true schema: type: string - x-ms-docs-key-type: educationCategory + x-ms-docs-key-type: educationRubric requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' + $ref: '#/components/schemas/microsoft.graph.educationRubric' required: true responses: '204': @@ -5508,24 +5377,16 @@ paths: delete: tags: - education.educationUser - summary: Delete navigation property categories for education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.me.assignments_DeleteCategories + summary: Delete navigation property rubrics for education + operationId: education.me_DeleteRubrics parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id + - name: educationRubric-id in: path - description: 'key: id of educationCategory' + description: 'key: id of educationRubric' required: true schema: type: string - x-ms-docs-key-type: educationCategory + x-ms-docs-key-type: educationRubric - name: If-Match in: header description: ETag @@ -5537,69 +5398,14 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish': - post: + /education/me/schools: + get: tags: - - education.Actions - summary: Invoke action publish - operationId: education.me.assignments_publish + - education.educationUser + summary: Get schools from education + description: Schools to which the user belongs. Nullable. + operationId: education.me_ListSchools parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder': - post: - tags: - - education.Actions - summary: Invoke action setUpResourcesFolder - operationId: education.me.assignments_setUpResourcesFolder - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/resources': - get: - tags: - - education.educationUser - summary: Get resources from education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.me.assignments_ListResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -5617,10 +5423,36 @@ paths: enum: - id - id desc - - distributeForStudentWork - - distributeForStudentWork desc - - resource - - resource desc + - description + - description desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - address + - address desc + - createdBy + - createdBy desc + - externalId + - externalId desc + - externalPrincipalId + - externalPrincipalId desc + - fax + - fax desc + - highestGrade + - highestGrade desc + - lowestGrade + - lowestGrade desc + - phone + - phone desc + - principalEmail + - principalEmail desc + - principalName + - principalName desc + - schoolNumber + - schoolNumber desc type: string - name: $select in: query @@ -5633,8 +5465,24 @@ paths: items: enum: - id - - distributeForStudentWork - - resource + - description + - displayName + - externalSource + - externalSourceDetail + - address + - createdBy + - externalId + - externalPrincipalId + - fax + - highestGrade + - lowestGrade + - phone + - principalEmail + - principalName + - schoolNumber + - administrativeUnit + - classes + - users type: string - name: $expand in: query @@ -5647,6 +5495,9 @@ paths: items: enum: - '*' + - administrativeUnit + - classes + - users type: string responses: '200': @@ -5654,13 +5505,13 @@ paths: content: application/json: schema: - title: Collection of educationAssignmentResource + title: Collection of educationSchool type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' + $ref: '#/components/schemas/microsoft.graph.educationSchool' '@odata.nextLink': type: string additionalProperties: @@ -5671,62 +5522,22 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to resources for education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.me.assignments_CreateResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}': + /education/me/schools/$ref: get: tags: - education.educationUser - summary: Get resources from education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.me.assignments_GetResources + summary: Get ref of schools from education + description: Schools to which the user belongs. Nullable. + operationId: education.me_ListGraphRefSchools parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource - - name: $select + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby in: query - description: Select properties to be returned + description: Order items by property values style: form explode: false schema: @@ -5735,222 +5546,114 @@ paths: items: enum: - id - - distributeForStudentWork - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' + - id desc + - description + - description desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - address + - address desc + - createdBy + - createdBy desc + - externalId + - externalId desc + - externalPrincipalId + - externalPrincipalId desc + - fax + - fax desc + - highestGrade + - highestGrade desc + - lowestGrade + - lowestGrade desc + - phone + - phone desc + - principalEmail + - principalEmail desc + - principalName + - principalName desc + - schoolNumber + - schoolNumber desc type: string responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property links content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' + title: Collection of links of educationSchool + type: object + properties: + value: + type: array + items: + type: string + '@odata.nextLink': + type: string + additionalProperties: + type: object default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - education.educationUser - summary: Update the navigation property resources in education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.me.assignments_UpdateResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource + summary: Create new navigation property ref to schools for education + description: Schools to which the user belongs. Nullable. + operationId: education.me_CreateGraphRefSchools requestBody: - description: New navigation property values + description: New navigation property ref value content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' + type: object + additionalProperties: + type: object required: true responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property resources for education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.me.assignments_DeleteResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + '201': + description: Created navigation property link. + content: + application/json: + schema: + type: object + additionalProperties: + type: object default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/rubric': + /education/me/schools/microsoft.graph.delta(): get: tags: - - education.educationUser - summary: Get rubric from education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.me.assignments_GetRubric - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - createdBy - - createdDateTime - - description - - displayName - - grading - - lastModifiedBy - - lastModifiedDateTime - - levels - - qualities - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string + - education.Functions + summary: Invoke function delta + operationId: education.me.schools_delta responses: '200': - description: Retrieved navigation property + description: Success content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property rubric in education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.me.assignments_UpdateRubric - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property rubric for education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.me.assignments_DeleteRubric - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationSchool' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions': + x-ms-docs-operation-type: function + /education/me/taughtClasses: get: tags: - education.educationUser - summary: Get submissions from education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.me.assignments_ListSubmissions + summary: Get taughtClasses from education + description: Classes for which the user is a teacher. + operationId: education.me_ListTaughtClasses parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -5968,28 +5671,30 @@ paths: enum: - id - id desc - - reassignedBy - - reassignedBy desc - - reassignedDateTime - - reassignedDateTime desc - - recipient - - recipient desc - - resourcesFolderUrl - - resourcesFolderUrl desc - - returnedBy - - returnedBy desc - - returnedDateTime - - returnedDateTime desc - - status - - status desc - - submittedBy - - submittedBy desc - - submittedDateTime - - submittedDateTime desc - - unsubmittedBy - - unsubmittedBy desc - - unsubmittedDateTime - - unsubmittedDateTime desc + - classCode + - classCode desc + - course + - course desc + - createdBy + - createdBy desc + - description + - description desc + - displayName + - displayName desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc type: string - name: $select in: query @@ -6002,20 +5707,26 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - - recipient - - resourcesFolderUrl - - returnedBy - - returnedDateTime - - status - - submittedBy - - submittedDateTime - - unsubmittedBy - - unsubmittedDateTime - - outcomes - - resources - - submittedResources + - classCode + - course + - createdBy + - description + - displayName + - externalId + - externalName + - externalSource + - externalSourceDetail + - grade + - mailNickname + - term + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string - name: $expand in: query @@ -6028,9 +5739,14 @@ paths: items: enum: - '*' - - outcomes - - resources - - submittedResources + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string responses: '200': @@ -6038,13 +5754,13 @@ paths: content: application/json: schema: - title: Collection of educationSubmission + title: Collection of educationClass type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationClass' '@odata.nextLink': type: string additionalProperties: @@ -6055,62 +5771,22 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to submissions for education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.me.assignments_CreateSubmissions - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}': + /education/me/taughtClasses/$ref: get: tags: - education.educationUser - summary: Get submissions from education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.me.assignments_GetSubmissions + summary: Get ref of taughtClasses from education + description: Classes for which the user is a teacher. + operationId: education.me_ListGraphRefTaughtClasses parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: $select + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby in: query - description: Select properties to be returned + description: Order items by property values style: form explode: false schema: @@ -6119,4995 +5795,235 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - - recipient - - resourcesFolderUrl - - returnedBy - - returnedDateTime - - status - - submittedBy - - submittedDateTime - - unsubmittedBy - - unsubmittedDateTime - - outcomes - - resources - - submittedResources - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - outcomes - - resources - - submittedResources + - id desc + - classCode + - classCode desc + - course + - course desc + - createdBy + - createdBy desc + - description + - description desc + - displayName + - displayName desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc type: string responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property links content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - links: - outcomes: - operationId: education.me.assignments.Submissions.ListOutcomes - parameters: - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id - resources: - operationId: education.me.assignments.Submissions.ListResources - parameters: - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id - submittedResources: - operationId: education.me.assignments.Submissions.ListSubmittedResources - parameters: - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id + title: Collection of links of educationClass + type: object + properties: + value: + type: array + items: + type: string + '@odata.nextLink': + type: string + additionalProperties: + type: object default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - education.educationUser - summary: Update the navigation property submissions in education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.me.assignments_UpdateSubmissions - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission + summary: Create new navigation property ref to taughtClasses for education + description: Classes for which the user is a teacher. + operationId: education.me_CreateGraphRefTaughtClasses requestBody: - description: New navigation property values + description: New navigation property ref value content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + type: object + additionalProperties: + type: object required: true responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property submissions for education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.me.assignments_DeleteSubmissions - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + '201': + description: Created navigation property link. + content: + application/json: + schema: + type: object + additionalProperties: + type: object default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign': - post: + /education/me/taughtClasses/microsoft.graph.delta(): + get: tags: - - education.Actions - summary: Invoke action reassign - operationId: education.me.assignments.submissions_reassign - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission + - education.Functions + summary: Invoke function delta + operationId: education.me.taughtClasses_delta responses: '200': description: Success content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationClass' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return': - post: + x-ms-docs-operation-type: function + /education/me/user: + get: tags: - - education.Actions - summary: Invoke action return - operationId: education.me.assignments.submissions_return + - education.educationUser + summary: Get user from education + description: The directory user corresponding to this user. + operationId: education.me_GetUser parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder': - post: - tags: - - education.Actions - summary: Invoke action setUpResourcesFolder - operationId: education.me.assignments.submissions_setUpResourcesFolder - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit': - post: - tags: - - education.Actions - summary: Invoke action submit - operationId: education.me.assignments.submissions_submit - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit': - post: - tags: - - education.Actions - summary: Invoke action unsubmit - operationId: education.me.assignments.submissions_unsubmit - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes': - get: - tags: - - education.educationUser - summary: Get outcomes from education - description: Read-Write. Nullable. - operationId: education.me.assignments.submissions_ListOutcomes - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - lastModifiedBy - - lastModifiedBy desc - - lastModifiedDateTime - - lastModifiedDateTime desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - lastModifiedBy - - lastModifiedDateTime - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationOutcome - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to outcomes for education - description: Read-Write. Nullable. - operationId: education.me.assignments.submissions_CreateOutcomes - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}': - get: - tags: - - education.educationUser - summary: Get outcomes from education - description: Read-Write. Nullable. - operationId: education.me.assignments.submissions_GetOutcomes - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id - in: path - description: 'key: id of educationOutcome' - required: true - schema: - type: string - x-ms-docs-key-type: educationOutcome - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - lastModifiedBy - - lastModifiedDateTime - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property outcomes in education - description: Read-Write. Nullable. - operationId: education.me.assignments.submissions_UpdateOutcomes - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id - in: path - description: 'key: id of educationOutcome' - required: true - schema: - type: string - x-ms-docs-key-type: educationOutcome - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property outcomes for education - description: Read-Write. Nullable. - operationId: education.me.assignments.submissions_DeleteOutcomes - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id - in: path - description: 'key: id of educationOutcome' - required: true - schema: - type: string - x-ms-docs-key-type: educationOutcome - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources': - get: - tags: - - education.educationUser - summary: Get resources from education - description: Nullable. - operationId: education.me.assignments.submissions_ListResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - assignmentResourceUrl - - assignmentResourceUrl desc - - resource - - resource desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - assignmentResourceUrl - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationSubmissionResource - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to resources for education - description: Nullable. - operationId: education.me.assignments.submissions_CreateResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}': - get: - tags: - - education.educationUser - summary: Get resources from education - description: Nullable. - operationId: education.me.assignments.submissions_GetResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - assignmentResourceUrl - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property resources in education - description: Nullable. - operationId: education.me.assignments.submissions_UpdateResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property resources for education - description: Nullable. - operationId: education.me.assignments.submissions_DeleteResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources': - get: - tags: - - education.educationUser - summary: Get submittedResources from education - description: Read-only. Nullable. - operationId: education.me.assignments.submissions_ListSubmittedResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - assignmentResourceUrl - - assignmentResourceUrl desc - - resource - - resource desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - assignmentResourceUrl - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationSubmissionResource - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to submittedResources for education - description: Read-only. Nullable. - operationId: education.me.assignments.submissions_CreateSubmittedResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}': - get: - tags: - - education.educationUser - summary: Get submittedResources from education - description: Read-only. Nullable. - operationId: education.me.assignments.submissions_GetSubmittedResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - assignmentResourceUrl - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property submittedResources in education - description: Read-only. Nullable. - operationId: education.me.assignments.submissions_UpdateSubmittedResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property submittedResources for education - description: Read-only. Nullable. - operationId: education.me.assignments.submissions_DeleteSubmittedResources - parameters: - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/classes: - get: - tags: - - education.educationUser - summary: Get classes from education - description: Classes to which the user belongs. Nullable. - operationId: education.me_ListClasses - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - classCode - - course - - createdBy - - description - - displayName - - externalId - - externalName - - externalSource - - externalSourceDetail - - grade - - mailNickname - - term - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationClass - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - /education/me/classes/$ref: - get: - tags: - - education.educationUser - summary: Get ref of classes from education - description: Classes to which the user belongs. Nullable. - operationId: education.me_ListGraphRefClasses - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - responses: - '200': - description: Retrieved navigation property links - content: - application/json: - schema: - title: Collection of links of educationClass - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property ref to classes for education - description: Classes to which the user belongs. Nullable. - operationId: education.me_CreateGraphRefClasses - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '201': - description: Created navigation property link. - content: - application/json: - schema: - type: object - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/classes/microsoft.graph.delta(): - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.me.classes_delta - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /education/me/rubrics: - get: - tags: - - education.educationUser - summary: Get rubrics from education - operationId: education.me_ListRubrics - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - createdBy - - createdBy desc - - createdDateTime - - createdDateTime desc - - description - - description desc - - displayName - - displayName desc - - grading - - grading desc - - lastModifiedBy - - lastModifiedBy desc - - lastModifiedDateTime - - lastModifiedDateTime desc - - levels - - levels desc - - qualities - - qualities desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - createdBy - - createdDateTime - - description - - displayName - - grading - - lastModifiedBy - - lastModifiedDateTime - - levels - - qualities - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationRubric - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to rubrics for education - operationId: education.me_CreateRubrics - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/me/rubrics/{educationRubric-id}': - get: - tags: - - education.educationUser - summary: Get rubrics from education - operationId: education.me_GetRubrics - parameters: - - name: educationRubric-id - in: path - description: 'key: id of educationRubric' - required: true - schema: - type: string - x-ms-docs-key-type: educationRubric - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - createdBy - - createdDateTime - - description - - displayName - - grading - - lastModifiedBy - - lastModifiedDateTime - - levels - - qualities - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property rubrics in education - operationId: education.me_UpdateRubrics - parameters: - - name: educationRubric-id - in: path - description: 'key: id of educationRubric' - required: true - schema: - type: string - x-ms-docs-key-type: educationRubric - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property rubrics for education - operationId: education.me_DeleteRubrics - parameters: - - name: educationRubric-id - in: path - description: 'key: id of educationRubric' - required: true - schema: - type: string - x-ms-docs-key-type: educationRubric - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/schools: - get: - tags: - - education.educationUser - summary: Get schools from education - description: Schools to which the user belongs. Nullable. - operationId: education.me_ListSchools - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - description - - description desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - address - - address desc - - createdBy - - createdBy desc - - externalId - - externalId desc - - externalPrincipalId - - externalPrincipalId desc - - fax - - fax desc - - highestGrade - - highestGrade desc - - lowestGrade - - lowestGrade desc - - phone - - phone desc - - principalEmail - - principalEmail desc - - principalName - - principalName desc - - schoolNumber - - schoolNumber desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - description - - displayName - - externalSource - - externalSourceDetail - - address - - createdBy - - externalId - - externalPrincipalId - - fax - - highestGrade - - lowestGrade - - phone - - principalEmail - - principalName - - schoolNumber - - administrativeUnit - - classes - - users - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - administrativeUnit - - classes - - users - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationSchool - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - /education/me/schools/$ref: - get: - tags: - - education.educationUser - summary: Get ref of schools from education - description: Schools to which the user belongs. Nullable. - operationId: education.me_ListGraphRefSchools - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - description - - description desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - address - - address desc - - createdBy - - createdBy desc - - externalId - - externalId desc - - externalPrincipalId - - externalPrincipalId desc - - fax - - fax desc - - highestGrade - - highestGrade desc - - lowestGrade - - lowestGrade desc - - phone - - phone desc - - principalEmail - - principalEmail desc - - principalName - - principalName desc - - schoolNumber - - schoolNumber desc - type: string - responses: - '200': - description: Retrieved navigation property links - content: - application/json: - schema: - title: Collection of links of educationSchool - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property ref to schools for education - description: Schools to which the user belongs. Nullable. - operationId: education.me_CreateGraphRefSchools - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '201': - description: Created navigation property link. - content: - application/json: - schema: - type: object - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/schools/microsoft.graph.delta(): - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.me.schools_delta - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /education/me/taughtClasses: - get: - tags: - - education.educationUser - summary: Get taughtClasses from education - description: Classes for which the user is a teacher. - operationId: education.me_ListTaughtClasses - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - classCode - - course - - createdBy - - description - - displayName - - externalId - - externalName - - externalSource - - externalSourceDetail - - grade - - mailNickname - - term - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationClass - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - /education/me/taughtClasses/$ref: - get: - tags: - - education.educationUser - summary: Get ref of taughtClasses from education - description: Classes for which the user is a teacher. - operationId: education.me_ListGraphRefTaughtClasses - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - responses: - '200': - description: Retrieved navigation property links - content: - application/json: - schema: - title: Collection of links of educationClass - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property ref to taughtClasses for education - description: Classes for which the user is a teacher. - operationId: education.me_CreateGraphRefTaughtClasses - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '201': - description: Created navigation property link. - content: - application/json: - schema: - type: object - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/taughtClasses/microsoft.graph.delta(): - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.me.taughtClasses_delta - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /education/me/user: - get: - tags: - - education.educationUser - summary: Get user from education - description: The directory user corresponding to this user. - operationId: education.me_GetUser - parameters: - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - deletedDateTime - - accountEnabled - - ageGroup - - assignedLicenses - - assignedPlans - - businessPhones - - city - - companyName - - consentProvidedForMinor - - country - - createdDateTime - - creationType - - department - - displayName - - employeeHireDate - - employeeId - - employeeOrgData - - employeeType - - externalUserState - - externalUserStateChangeDateTime - - faxNumber - - givenName - - identities - - imAddresses - - isResourceAccount - - jobTitle - - lastPasswordChangeDateTime - - legalAgeGroupClassification - - licenseAssignmentStates - - mail - - mailNickname - - mobilePhone - - officeLocation - - onPremisesDistinguishedName - - onPremisesDomainName - - onPremisesExtensionAttributes - - onPremisesImmutableId - - onPremisesLastSyncDateTime - - onPremisesProvisioningErrors - - onPremisesSamAccountName - - onPremisesSecurityIdentifier - - onPremisesSyncEnabled - - onPremisesUserPrincipalName - - otherMails - - passwordPolicies - - passwordProfile - - postalCode - - preferredLanguage - - provisionedPlans - - proxyAddresses - - showInAddressList - - signInSessionsValidFromDateTime - - state - - streetAddress - - surname - - usageLocation - - userPrincipalName - - userType - - mailboxSettings - - deviceEnrollmentLimit - - aboutMe - - birthday - - hireDate - - interests - - mySite - - pastProjects - - preferredName - - responsibilities - - schools - - skills - - appRoleAssignments - - createdObjects - - directReports - - licenseDetails - - manager - - memberOf - - oauth2PermissionGrants - - ownedDevices - - ownedObjects - - registeredDevices - - scopedRoleMemberOf - - transitiveMemberOf - - calendar - - calendarGroups - - calendars - - calendarView - - contactFolders - - contacts - - events - - inferenceClassification - - mailFolders - - messages - - outlook - - people - - drive - - drives - - followedSites - - extensions - - agreementAcceptances - - managedDevices - - managedAppRegistrations - - deviceManagementTroubleshootingEvents - - planner - - insights - - settings - - onenote - - photo - - photos - - activities - - onlineMeetings - - presence - - authentication - - chats - - joinedTeams - - teamwork - - todo - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appRoleAssignments - - createdObjects - - directReports - - licenseDetails - - manager - - memberOf - - oauth2PermissionGrants - - ownedDevices - - ownedObjects - - registeredDevices - - scopedRoleMemberOf - - transitiveMemberOf - - calendar - - calendarGroups - - calendars - - calendarView - - contactFolders - - contacts - - events - - inferenceClassification - - mailFolders - - messages - - outlook - - people - - drive - - drives - - followedSites - - extensions - - agreementAcceptances - - managedDevices - - managedAppRegistrations - - deviceManagementTroubleshootingEvents - - planner - - insights - - settings - - onenote - - photo - - photos - - activities - - onlineMeetings - - presence - - authentication - - chats - - joinedTeams - - teamwork - - todo - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.user' - links: - appRoleAssignments: - operationId: education.me.User.ListAppRoleAssignments - createdObjects: - operationId: education.me.User.ListCreatedObjects - directReports: - operationId: education.me.User.ListDirectReports - licenseDetails: - operationId: education.me.User.ListLicenseDetails - manager: - operationId: education.me.User.GetManager - memberOf: - operationId: education.me.User.ListMemberOf - oauth2PermissionGrants: - operationId: education.me.User.ListOauth2PermissionGrants - ownedDevices: - operationId: education.me.User.ListOwnedDevices - ownedObjects: - operationId: education.me.User.ListOwnedObjects - registeredDevices: - operationId: education.me.User.ListRegisteredDevices - scopedRoleMemberOf: - operationId: education.me.User.ListScopedRoleMemberOf - transitiveMemberOf: - operationId: education.me.User.ListTransitiveMemberOf - calendar: - operationId: education.me.User.GetCalendar - calendarGroups: - operationId: education.me.User.ListCalendarGroups - calendars: - operationId: education.me.User.ListCalendars - calendarView: - operationId: education.me.User.ListCalendarView - contactFolders: - operationId: education.me.User.ListContactFolders - contacts: - operationId: education.me.User.ListContacts - events: - operationId: education.me.User.ListEvents - inferenceClassification: - operationId: education.me.User.GetInferenceClassification - mailFolders: - operationId: education.me.User.ListMailFolders - messages: - operationId: education.me.User.ListMessages - outlook: - operationId: education.me.User.GetOutlook - people: - operationId: education.me.User.ListPeople - drive: - operationId: education.me.User.GetDrive - drives: - operationId: education.me.User.ListDrives - followedSites: - operationId: education.me.User.ListFollowedSites - extensions: - operationId: education.me.User.ListExtensions - agreementAcceptances: - operationId: education.me.User.ListAgreementAcceptances - managedDevices: - operationId: education.me.User.ListManagedDevices - managedAppRegistrations: - operationId: education.me.User.ListManagedAppRegistrations - deviceManagementTroubleshootingEvents: - operationId: education.me.User.ListDeviceManagementTroubleshootingEvents - planner: - operationId: education.me.User.GetPlanner - insights: - operationId: education.me.User.GetInsights - settings: - operationId: education.me.User.GetSettings - onenote: - operationId: education.me.User.GetOnenote - photo: - operationId: education.me.User.GetPhoto - photos: - operationId: education.me.User.ListPhotos - activities: - operationId: education.me.User.ListActivities - onlineMeetings: - operationId: education.me.User.ListOnlineMeetings - presence: - operationId: education.me.User.GetPresence - authentication: - operationId: education.me.User.GetAuthentication - chats: - operationId: education.me.User.ListChats - joinedTeams: - operationId: education.me.User.ListJoinedTeams - teamwork: - operationId: education.me.User.GetTeamwork - todo: - operationId: education.me.User.GetTodo - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/me/user/$ref: - get: - tags: - - education.educationUser - summary: Get ref of user from education - description: The directory user corresponding to this user. - operationId: education.me_GetGraphRefUser - responses: - '200': - description: Retrieved navigation property link - content: - application/json: - schema: - type: string - links: - appRoleAssignments: - operationId: education.me.User.ListAppRoleAssignments - createdObjects: - operationId: education.me.User.ListCreatedObjects - directReports: - operationId: education.me.User.ListDirectReports - licenseDetails: - operationId: education.me.User.ListLicenseDetails - manager: - operationId: education.me.User.GetManager - memberOf: - operationId: education.me.User.ListMemberOf - oauth2PermissionGrants: - operationId: education.me.User.ListOauth2PermissionGrants - ownedDevices: - operationId: education.me.User.ListOwnedDevices - ownedObjects: - operationId: education.me.User.ListOwnedObjects - registeredDevices: - operationId: education.me.User.ListRegisteredDevices - scopedRoleMemberOf: - operationId: education.me.User.ListScopedRoleMemberOf - transitiveMemberOf: - operationId: education.me.User.ListTransitiveMemberOf - calendar: - operationId: education.me.User.GetCalendar - calendarGroups: - operationId: education.me.User.ListCalendarGroups - calendars: - operationId: education.me.User.ListCalendars - calendarView: - operationId: education.me.User.ListCalendarView - contactFolders: - operationId: education.me.User.ListContactFolders - contacts: - operationId: education.me.User.ListContacts - events: - operationId: education.me.User.ListEvents - inferenceClassification: - operationId: education.me.User.GetInferenceClassification - mailFolders: - operationId: education.me.User.ListMailFolders - messages: - operationId: education.me.User.ListMessages - outlook: - operationId: education.me.User.GetOutlook - people: - operationId: education.me.User.ListPeople - drive: - operationId: education.me.User.GetDrive - drives: - operationId: education.me.User.ListDrives - followedSites: - operationId: education.me.User.ListFollowedSites - extensions: - operationId: education.me.User.ListExtensions - agreementAcceptances: - operationId: education.me.User.ListAgreementAcceptances - managedDevices: - operationId: education.me.User.ListManagedDevices - managedAppRegistrations: - operationId: education.me.User.ListManagedAppRegistrations - deviceManagementTroubleshootingEvents: - operationId: education.me.User.ListDeviceManagementTroubleshootingEvents - planner: - operationId: education.me.User.GetPlanner - insights: - operationId: education.me.User.GetInsights - settings: - operationId: education.me.User.GetSettings - onenote: - operationId: education.me.User.GetOnenote - photo: - operationId: education.me.User.GetPhoto - photos: - operationId: education.me.User.ListPhotos - activities: - operationId: education.me.User.ListActivities - onlineMeetings: - operationId: education.me.User.ListOnlineMeetings - presence: - operationId: education.me.User.GetPresence - authentication: - operationId: education.me.User.GetAuthentication - chats: - operationId: education.me.User.ListChats - joinedTeams: - operationId: education.me.User.ListJoinedTeams - teamwork: - operationId: education.me.User.GetTeamwork - todo: - operationId: education.me.User.GetTodo - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - put: - tags: - - education.educationUser - summary: Update the ref of navigation property user in education - description: The directory user corresponding to this user. - operationId: education.me_SetGraphRefUser - requestBody: - description: New navigation property ref values - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete ref of navigation property user for education - description: The directory user corresponding to this user. - operationId: education.me_DeleteGraphRefUser - parameters: - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /education/schools: - get: - tags: - - education.educationSchool - summary: Get schools from education - operationId: education_ListSchools - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - description - - description desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - address - - address desc - - createdBy - - createdBy desc - - externalId - - externalId desc - - externalPrincipalId - - externalPrincipalId desc - - fax - - fax desc - - highestGrade - - highestGrade desc - - lowestGrade - - lowestGrade desc - - phone - - phone desc - - principalEmail - - principalEmail desc - - principalName - - principalName desc - - schoolNumber - - schoolNumber desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - description - - displayName - - externalSource - - externalSourceDetail - - address - - createdBy - - externalId - - externalPrincipalId - - fax - - highestGrade - - lowestGrade - - phone - - principalEmail - - principalName - - schoolNumber - - administrativeUnit - - classes - - users - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - administrativeUnit - - classes - - users - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationSchool - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationSchool - summary: Create new navigation property to schools for education - operationId: education_CreateSchools - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}': - get: - tags: - - education.educationSchool - summary: Get schools from education - operationId: education_GetSchools - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - description - - displayName - - externalSource - - externalSourceDetail - - address - - createdBy - - externalId - - externalPrincipalId - - fax - - highestGrade - - lowestGrade - - phone - - principalEmail - - principalName - - schoolNumber - - administrativeUnit - - classes - - users - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - administrativeUnit - - classes - - users - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - links: - administrativeUnit: - operationId: education.Schools.GetAdministrativeUnit - parameters: - educationSchool-id: $request.path.educationSchool-id - classes: - operationId: education.Schools.ListClasses - parameters: - educationSchool-id: $request.path.educationSchool-id - users: - operationId: education.Schools.ListUsers - parameters: - educationSchool-id: $request.path.educationSchool-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationSchool - summary: Update the navigation property schools in education - operationId: education_UpdateSchools - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationSchool - summary: Delete navigation property schools for education - operationId: education_DeleteSchools - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/administrativeUnit': - get: - tags: - - education.educationSchool - summary: Get administrativeUnit from education - description: The underlying administrativeUnit for this school. - operationId: education.schools_GetAdministrativeUnit - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - deletedDateTime - - description - - displayName - - visibility - - members - - scopedRoleMembers - - extensions - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - members - - scopedRoleMembers - - extensions - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.administrativeUnit' - links: - members: - operationId: education.schools.AdministrativeUnit.ListMembers - parameters: - educationSchool-id: $request.path.educationSchool-id - scopedRoleMembers: - operationId: education.schools.AdministrativeUnit.ListScopedRoleMembers - parameters: - educationSchool-id: $request.path.educationSchool-id - extensions: - operationId: education.schools.AdministrativeUnit.ListExtensions - parameters: - educationSchool-id: $request.path.educationSchool-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/administrativeUnit/$ref': - get: - tags: - - education.educationSchool - summary: Get ref of administrativeUnit from education - description: The underlying administrativeUnit for this school. - operationId: education.schools_GetGraphRefAdministrativeUnit - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - responses: - '200': - description: Retrieved navigation property link - content: - application/json: - schema: - type: string - links: - members: - operationId: education.schools.AdministrativeUnit.ListMembers - parameters: - educationSchool-id: $request.path.educationSchool-id - scopedRoleMembers: - operationId: education.schools.AdministrativeUnit.ListScopedRoleMembers - parameters: - educationSchool-id: $request.path.educationSchool-id - extensions: - operationId: education.schools.AdministrativeUnit.ListExtensions - parameters: - educationSchool-id: $request.path.educationSchool-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - put: - tags: - - education.educationSchool - summary: Update the ref of navigation property administrativeUnit in education - description: The underlying administrativeUnit for this school. - operationId: education.schools_SetGraphRefAdministrativeUnit - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - requestBody: - description: New navigation property ref values - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationSchool - summary: Delete ref of navigation property administrativeUnit for education - description: The underlying administrativeUnit for this school. - operationId: education.schools_DeleteGraphRefAdministrativeUnit - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/classes': - get: - tags: - - education.educationSchool - summary: Get classes from education - description: Classes taught at the school. Nullable. - operationId: education.schools_ListClasses - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - classCode - - course - - createdBy - - description - - displayName - - externalId - - externalName - - externalSource - - externalSourceDetail - - grade - - mailNickname - - term - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignmentCategories - - assignmentDefaults - - assignments - - assignmentSettings - - group - - members - - schools - - teachers - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationClass - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/classes/$ref': - get: - tags: - - education.educationSchool - summary: Get ref of classes from education - description: Classes taught at the school. Nullable. - operationId: education.schools_ListGraphRefClasses - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - classCode - - classCode desc - - course - - course desc - - createdBy - - createdBy desc - - description - - description desc - - displayName - - displayName desc - - externalId - - externalId desc - - externalName - - externalName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - grade - - grade desc - - mailNickname - - mailNickname desc - - term - - term desc - type: string - responses: - '200': - description: Retrieved navigation property links - content: - application/json: - schema: - title: Collection of links of educationClass - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationSchool - summary: Create new navigation property ref to classes for education - description: Classes taught at the school. Nullable. - operationId: education.schools_CreateGraphRefClasses - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '201': - description: Created navigation property link. - content: - application/json: - schema: - type: object - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/classes/microsoft.graph.delta()': - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.schools.classes_delta - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationClass' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/education/schools/{educationSchool-id}/users': - get: - tags: - - education.educationSchool - summary: Get users from education - description: Users in the school. Nullable. - operationId: education.schools_ListUsers - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - relatedContacts - - relatedContacts desc - - accountEnabled - - accountEnabled desc - - assignedLicenses - - assignedLicenses desc - - assignedPlans - - assignedPlans desc - - businessPhones - - businessPhones desc - - createdBy - - createdBy desc - - department - - department desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - givenName - - givenName desc - - mail - - mail desc - - mailingAddress - - mailingAddress desc - - mailNickname - - mailNickname desc - - middleName - - middleName desc - - mobilePhone - - mobilePhone desc - - officeLocation - - officeLocation desc - - onPremisesInfo - - onPremisesInfo desc - - passwordPolicies - - passwordPolicies desc - - passwordProfile - - passwordProfile desc - - preferredLanguage - - preferredLanguage desc - - primaryRole - - primaryRole desc - - provisionedPlans - - provisionedPlans desc - - refreshTokensValidFromDateTime - - refreshTokensValidFromDateTime desc - - residenceAddress - - residenceAddress desc - - showInAddressList - - showInAddressList desc - - student - - student desc - - surname - - surname desc - - teacher - - teacher desc - - usageLocation - - usageLocation desc - - userPrincipalName - - userPrincipalName desc - - userType - - userType desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - relatedContacts - - accountEnabled - - assignedLicenses - - assignedPlans - - businessPhones - - createdBy - - department - - displayName - - externalSource - - externalSourceDetail - - givenName - - mail - - mailingAddress - - mailNickname - - middleName - - mobilePhone - - officeLocation - - onPremisesInfo - - passwordPolicies - - passwordProfile - - preferredLanguage - - primaryRole - - provisionedPlans - - refreshTokensValidFromDateTime - - residenceAddress - - showInAddressList - - student - - surname - - teacher - - usageLocation - - userPrincipalName - - userType - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationUser - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationUser' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/users/$ref': - get: - tags: - - education.educationSchool - summary: Get ref of users from education - description: Users in the school. Nullable. - operationId: education.schools_ListGraphRefUsers - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - relatedContacts - - relatedContacts desc - - accountEnabled - - accountEnabled desc - - assignedLicenses - - assignedLicenses desc - - assignedPlans - - assignedPlans desc - - businessPhones - - businessPhones desc - - createdBy - - createdBy desc - - department - - department desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - givenName - - givenName desc - - mail - - mail desc - - mailingAddress - - mailingAddress desc - - mailNickname - - mailNickname desc - - middleName - - middleName desc - - mobilePhone - - mobilePhone desc - - officeLocation - - officeLocation desc - - onPremisesInfo - - onPremisesInfo desc - - passwordPolicies - - passwordPolicies desc - - passwordProfile - - passwordProfile desc - - preferredLanguage - - preferredLanguage desc - - primaryRole - - primaryRole desc - - provisionedPlans - - provisionedPlans desc - - refreshTokensValidFromDateTime - - refreshTokensValidFromDateTime desc - - residenceAddress - - residenceAddress desc - - showInAddressList - - showInAddressList desc - - student - - student desc - - surname - - surname desc - - teacher - - teacher desc - - usageLocation - - usageLocation desc - - userPrincipalName - - userPrincipalName desc - - userType - - userType desc - type: string - responses: - '200': - description: Retrieved navigation property links - content: - application/json: - schema: - title: Collection of links of educationUser - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationSchool - summary: Create new navigation property ref to users for education - description: Users in the school. Nullable. - operationId: education.schools_CreateGraphRefUsers - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '201': - description: Created navigation property link. - content: - application/json: - schema: - type: object - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/schools/{educationSchool-id}/users/microsoft.graph.delta()': - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.schools.users_delta - parameters: - - name: educationSchool-id - in: path - description: 'key: id of educationSchool' - required: true - schema: - type: string - x-ms-docs-key-type: educationSchool - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationUser' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /education/schools/microsoft.graph.delta(): - get: - tags: - - education.Functions - summary: Invoke function delta - operationId: education.schools_delta - responses: - '200': - description: Success - content: - application/json: - schema: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationSchool' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /education/users: - get: - tags: - - education.educationUser - summary: Get users from education - operationId: education_ListUsers - parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - relatedContacts - - relatedContacts desc - - accountEnabled - - accountEnabled desc - - assignedLicenses - - assignedLicenses desc - - assignedPlans - - assignedPlans desc - - businessPhones - - businessPhones desc - - createdBy - - createdBy desc - - department - - department desc - - displayName - - displayName desc - - externalSource - - externalSource desc - - externalSourceDetail - - externalSourceDetail desc - - givenName - - givenName desc - - mail - - mail desc - - mailingAddress - - mailingAddress desc - - mailNickname - - mailNickname desc - - middleName - - middleName desc - - mobilePhone - - mobilePhone desc - - officeLocation - - officeLocation desc - - onPremisesInfo - - onPremisesInfo desc - - passwordPolicies - - passwordPolicies desc - - passwordProfile - - passwordProfile desc - - preferredLanguage - - preferredLanguage desc - - primaryRole - - primaryRole desc - - provisionedPlans - - provisionedPlans desc - - refreshTokensValidFromDateTime - - refreshTokensValidFromDateTime desc - - residenceAddress - - residenceAddress desc - - showInAddressList - - showInAddressList desc - - student - - student desc - - surname - - surname desc - - teacher - - teacher desc - - usageLocation - - usageLocation desc - - userPrincipalName - - userPrincipalName desc - - userType - - userType desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - relatedContacts - - accountEnabled - - assignedLicenses - - assignedPlans - - businessPhones - - createdBy - - department - - displayName - - externalSource - - externalSourceDetail - - givenName - - mail - - mailingAddress - - mailNickname - - middleName - - mobilePhone - - officeLocation - - onPremisesInfo - - passwordPolicies - - passwordProfile - - preferredLanguage - - primaryRole - - provisionedPlans - - refreshTokensValidFromDateTime - - residenceAddress - - showInAddressList - - student - - surname - - teacher - - usageLocation - - userPrincipalName - - userType - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationUser - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationUser' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to users for education - operationId: education_CreateUsers - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationUser' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationUser' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}': - get: - tags: - - education.educationUser - summary: Get users from education - operationId: education_GetUsers - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - relatedContacts - - accountEnabled - - assignedLicenses - - assignedPlans - - businessPhones - - createdBy - - department - - displayName - - externalSource - - externalSourceDetail - - givenName - - mail - - mailingAddress - - mailNickname - - middleName - - mobilePhone - - officeLocation - - onPremisesInfo - - passwordPolicies - - passwordProfile - - preferredLanguage - - primaryRole - - provisionedPlans - - refreshTokensValidFromDateTime - - residenceAddress - - showInAddressList - - student - - surname - - teacher - - usageLocation - - userPrincipalName - - userType - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - assignments - - rubrics - - classes - - schools - - taughtClasses - - user - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationUser' - links: - assignments: - operationId: education.Users.ListAssignments - parameters: - educationUser-id: $request.path.educationUser-id - rubrics: - operationId: education.Users.ListRubrics - parameters: - educationUser-id: $request.path.educationUser-id - classes: - operationId: education.Users.ListClasses - parameters: - educationUser-id: $request.path.educationUser-id - schools: - operationId: education.Users.ListSchools - parameters: - educationUser-id: $request.path.educationUser-id - taughtClasses: - operationId: education.Users.ListTaughtClasses - parameters: - educationUser-id: $request.path.educationUser-id - user: - operationId: education.Users.GetUser - parameters: - educationUser-id: $request.path.educationUser-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property users in education - operationId: education_UpdateUsers - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationUser' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property users for education - operationId: education_DeleteUsers - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments': - get: - tags: - - education.educationUser - summary: Get assignments from education - description: Assignments belonging to the user. - operationId: education.users_ListAssignments - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - addedStudentAction - - addedStudentAction desc - - addToCalendarAction - - addToCalendarAction desc - - allowLateSubmissions - - allowLateSubmissions desc - - allowStudentsToAddResourcesToSubmission - - allowStudentsToAddResourcesToSubmission desc - - assignDateTime - - assignDateTime desc - - assignedDateTime - - assignedDateTime desc - - assignTo - - assignTo desc - - classId - - classId desc - - closeDateTime - - closeDateTime desc - - createdBy - - createdBy desc - - createdDateTime - - createdDateTime desc - - displayName - - displayName desc - - dueDateTime - - dueDateTime desc - - grading - - grading desc - - instructions - - instructions desc - - lastModifiedBy - - lastModifiedBy desc - - lastModifiedDateTime - - lastModifiedDateTime desc - - notificationChannelUrl - - notificationChannelUrl desc - - resourcesFolderUrl - - resourcesFolderUrl desc - - status - - status desc - - webUrl - - webUrl desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - addedStudentAction - - addToCalendarAction - - allowLateSubmissions - - allowStudentsToAddResourcesToSubmission - - assignDateTime - - assignedDateTime - - assignTo - - classId - - closeDateTime - - createdBy - - createdDateTime - - displayName - - dueDateTime - - grading - - instructions - - lastModifiedBy - - lastModifiedDateTime - - notificationChannelUrl - - resourcesFolderUrl - - status - - webUrl - - categories - - resources - - rubric - - submissions - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - categories - - resources - - rubric - - submissions - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationAssignment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to assignments for education - description: Assignments belonging to the user. - operationId: education.users_CreateAssignments - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}': - get: - tags: - - education.educationUser - summary: Get assignments from education - description: Assignments belonging to the user. - operationId: education.users_GetAssignments - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - addedStudentAction - - addToCalendarAction - - allowLateSubmissions - - allowStudentsToAddResourcesToSubmission - - assignDateTime - - assignedDateTime - - assignTo - - classId - - closeDateTime - - createdBy - - createdDateTime - - displayName - - dueDateTime - - grading - - instructions - - lastModifiedBy - - lastModifiedDateTime - - notificationChannelUrl - - resourcesFolderUrl - - status - - webUrl - - categories - - resources - - rubric - - submissions - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - categories - - resources - - rubric - - submissions - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - links: - categories: - operationId: education.users.Assignments.ListCategories - parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - resources: - operationId: education.users.Assignments.ListResources - parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - rubric: - operationId: education.users.Assignments.GetRubric - parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - submissions: - operationId: education.users.Assignments.ListSubmissions - parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property assignments in education - description: Assignments belonging to the user. - operationId: education.users_UpdateAssignments - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property assignments for education - description: Assignments belonging to the user. - operationId: education.users_DeleteAssignments - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories': - get: - tags: - - education.educationUser - summary: Get categories from education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.users.assignments_ListCategories - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - displayName - - displayName desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationCategory - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationCategory' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to categories for education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.users.assignments_CreateCategories - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}': - get: - tags: - - education.educationUser - summary: Get categories from education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.users.assignments_GetCategories - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id - in: path - description: 'key: id of educationCategory' - required: true - schema: - type: string - x-ms-docs-key-type: educationCategory - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property categories in education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.users.assignments_UpdateCategories - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id - in: path - description: 'key: id of educationCategory' - required: true - schema: - type: string - x-ms-docs-key-type: educationCategory - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationCategory' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property categories for education - description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' - operationId: education.users.assignments_DeleteCategories - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationCategory-id - in: path - description: 'key: id of educationCategory' - required: true - schema: - type: string - x-ms-docs-key-type: educationCategory - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish': - post: - tags: - - education.Actions - summary: Invoke action publish - operationId: education.users.assignments_publish - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder': - post: - tags: - - education.Actions - summary: Invoke action setUpResourcesFolder - operationId: education.users.assignments_setUpResourcesFolder - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources': - get: - tags: - - education.educationUser - summary: Get resources from education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.users.assignments_ListResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - distributeForStudentWork - - distributeForStudentWork desc - - resource - - resource desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - distributeForStudentWork - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - title: Collection of educationAssignmentResource - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - '@odata.nextLink': - type: string - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to resources for education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.users.assignments_CreateResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}': - get: - tags: - - education.educationUser - summary: Get resources from education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.users.assignments_GetResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - distributeForStudentWork - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property resources in education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.users.assignments_UpdateResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationAssignmentResource' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - education.educationUser - summary: Delete navigation property resources for education - description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. - operationId: education.users.assignments_DeleteResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationAssignmentResource-id - in: path - description: 'key: id of educationAssignmentResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignmentResource - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric': - get: - tags: - - education.educationUser - summary: Get rubric from education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.users.assignments_GetRubric - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false schema: uniqueItems: true type: array items: enum: - id - - createdBy + - deletedDateTime + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country - createdDateTime - - description + - creationType + - department - displayName - - grading - - lastModifiedBy - - lastModifiedDateTime - - levels - - qualities + - employeeHireDate + - employeeId + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredLanguage + - provisionedPlans + - proxyAddresses + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - agreementAcceptances + - managedDevices + - managedAppRegistrations + - deviceManagementTroubleshootingEvents + - planner + - insights + - settings + - onenote + - photo + - photos + - activities + - onlineMeetings + - presence + - authentication + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -11120,6 +6036,52 @@ paths: items: enum: - '*' + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - agreementAcceptances + - managedDevices + - managedAppRegistrations + - deviceManagementTroubleshootingEvents + - planner + - insights + - settings + - onenote + - photo + - photos + - activities + - onlineMeetings + - presence + - authentication + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -11127,37 +6089,227 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' + $ref: '#/components/schemas/microsoft.graph.user' + links: + appRoleAssignments: + operationId: education.me.User.ListAppRoleAssignments + createdObjects: + operationId: education.me.User.ListCreatedObjects + directReports: + operationId: education.me.User.ListDirectReports + licenseDetails: + operationId: education.me.User.ListLicenseDetails + manager: + operationId: education.me.User.GetManager + memberOf: + operationId: education.me.User.ListMemberOf + oauth2PermissionGrants: + operationId: education.me.User.ListOauth2PermissionGrants + ownedDevices: + operationId: education.me.User.ListOwnedDevices + ownedObjects: + operationId: education.me.User.ListOwnedObjects + registeredDevices: + operationId: education.me.User.ListRegisteredDevices + scopedRoleMemberOf: + operationId: education.me.User.ListScopedRoleMemberOf + transitiveMemberOf: + operationId: education.me.User.ListTransitiveMemberOf + calendar: + operationId: education.me.User.GetCalendar + calendarGroups: + operationId: education.me.User.ListCalendarGroups + calendars: + operationId: education.me.User.ListCalendars + calendarView: + operationId: education.me.User.ListCalendarView + contactFolders: + operationId: education.me.User.ListContactFolders + contacts: + operationId: education.me.User.ListContacts + events: + operationId: education.me.User.ListEvents + inferenceClassification: + operationId: education.me.User.GetInferenceClassification + mailFolders: + operationId: education.me.User.ListMailFolders + messages: + operationId: education.me.User.ListMessages + outlook: + operationId: education.me.User.GetOutlook + people: + operationId: education.me.User.ListPeople + drive: + operationId: education.me.User.GetDrive + drives: + operationId: education.me.User.ListDrives + followedSites: + operationId: education.me.User.ListFollowedSites + extensions: + operationId: education.me.User.ListExtensions + agreementAcceptances: + operationId: education.me.User.ListAgreementAcceptances + managedDevices: + operationId: education.me.User.ListManagedDevices + managedAppRegistrations: + operationId: education.me.User.ListManagedAppRegistrations + deviceManagementTroubleshootingEvents: + operationId: education.me.User.ListDeviceManagementTroubleshootingEvents + planner: + operationId: education.me.User.GetPlanner + insights: + operationId: education.me.User.GetInsights + settings: + operationId: education.me.User.GetSettings + onenote: + operationId: education.me.User.GetOnenote + photo: + operationId: education.me.User.GetPhoto + photos: + operationId: education.me.User.ListPhotos + activities: + operationId: education.me.User.ListActivities + onlineMeetings: + operationId: education.me.User.ListOnlineMeetings + presence: + operationId: education.me.User.GetPresence + authentication: + operationId: education.me.User.GetAuthentication + chats: + operationId: education.me.User.ListChats + joinedTeams: + operationId: education.me.User.ListJoinedTeams + teamwork: + operationId: education.me.User.GetTeamwork + todo: + operationId: education.me.User.GetTodo + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /education/me/user/$ref: + get: + tags: + - education.educationUser + summary: Get ref of user from education + description: The directory user corresponding to this user. + operationId: education.me_GetGraphRefUser + responses: + '200': + description: Retrieved navigation property link + content: + application/json: + schema: + type: string + links: + appRoleAssignments: + operationId: education.me.User.ListAppRoleAssignments + createdObjects: + operationId: education.me.User.ListCreatedObjects + directReports: + operationId: education.me.User.ListDirectReports + licenseDetails: + operationId: education.me.User.ListLicenseDetails + manager: + operationId: education.me.User.GetManager + memberOf: + operationId: education.me.User.ListMemberOf + oauth2PermissionGrants: + operationId: education.me.User.ListOauth2PermissionGrants + ownedDevices: + operationId: education.me.User.ListOwnedDevices + ownedObjects: + operationId: education.me.User.ListOwnedObjects + registeredDevices: + operationId: education.me.User.ListRegisteredDevices + scopedRoleMemberOf: + operationId: education.me.User.ListScopedRoleMemberOf + transitiveMemberOf: + operationId: education.me.User.ListTransitiveMemberOf + calendar: + operationId: education.me.User.GetCalendar + calendarGroups: + operationId: education.me.User.ListCalendarGroups + calendars: + operationId: education.me.User.ListCalendars + calendarView: + operationId: education.me.User.ListCalendarView + contactFolders: + operationId: education.me.User.ListContactFolders + contacts: + operationId: education.me.User.ListContacts + events: + operationId: education.me.User.ListEvents + inferenceClassification: + operationId: education.me.User.GetInferenceClassification + mailFolders: + operationId: education.me.User.ListMailFolders + messages: + operationId: education.me.User.ListMessages + outlook: + operationId: education.me.User.GetOutlook + people: + operationId: education.me.User.ListPeople + drive: + operationId: education.me.User.GetDrive + drives: + operationId: education.me.User.ListDrives + followedSites: + operationId: education.me.User.ListFollowedSites + extensions: + operationId: education.me.User.ListExtensions + agreementAcceptances: + operationId: education.me.User.ListAgreementAcceptances + managedDevices: + operationId: education.me.User.ListManagedDevices + managedAppRegistrations: + operationId: education.me.User.ListManagedAppRegistrations + deviceManagementTroubleshootingEvents: + operationId: education.me.User.ListDeviceManagementTroubleshootingEvents + planner: + operationId: education.me.User.GetPlanner + insights: + operationId: education.me.User.GetInsights + settings: + operationId: education.me.User.GetSettings + onenote: + operationId: education.me.User.GetOnenote + photo: + operationId: education.me.User.GetPhoto + photos: + operationId: education.me.User.ListPhotos + activities: + operationId: education.me.User.ListActivities + onlineMeetings: + operationId: education.me.User.ListOnlineMeetings + presence: + operationId: education.me.User.GetPresence + authentication: + operationId: education.me.User.GetAuthentication + chats: + operationId: education.me.User.ListChats + joinedTeams: + operationId: education.me.User.ListJoinedTeams + teamwork: + operationId: education.me.User.GetTeamwork + todo: + operationId: education.me.User.GetTodo default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + put: tags: - education.educationUser - summary: Update the navigation property rubric in education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.users.assignments_UpdateRubric - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment + summary: Update the ref of navigation property user in education + description: The directory user corresponding to this user. + operationId: education.me_SetGraphRefUser requestBody: - description: New navigation property values + description: New navigation property ref values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationRubric' + type: object + additionalProperties: + type: object required: true responses: '204': @@ -11168,24 +6320,10 @@ paths: delete: tags: - education.educationUser - summary: Delete navigation property rubric for education - description: 'When set, the grading rubric attached to this assignment.' - operationId: education.users.assignments_DeleteRubric + summary: Delete ref of navigation property user for education + description: The directory user corresponding to this user. + operationId: education.me_DeleteGraphRefUser parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag @@ -11197,28 +6335,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions': + /education/schools: get: tags: - - education.educationUser - summary: Get submissions from education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.users.assignments_ListSubmissions + - education.educationSchool + summary: Get schools from education + operationId: education_ListSchools parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -11236,28 +6359,36 @@ paths: enum: - id - id desc - - reassignedBy - - reassignedBy desc - - reassignedDateTime - - reassignedDateTime desc - - recipient - - recipient desc - - resourcesFolderUrl - - resourcesFolderUrl desc - - returnedBy - - returnedBy desc - - returnedDateTime - - returnedDateTime desc - - status - - status desc - - submittedBy - - submittedBy desc - - submittedDateTime - - submittedDateTime desc - - unsubmittedBy - - unsubmittedBy desc - - unsubmittedDateTime - - unsubmittedDateTime desc + - description + - description desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - address + - address desc + - createdBy + - createdBy desc + - externalId + - externalId desc + - externalPrincipalId + - externalPrincipalId desc + - fax + - fax desc + - highestGrade + - highestGrade desc + - lowestGrade + - lowestGrade desc + - phone + - phone desc + - principalEmail + - principalEmail desc + - principalName + - principalName desc + - schoolNumber + - schoolNumber desc type: string - name: $select in: query @@ -11270,20 +6401,24 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - - recipient - - resourcesFolderUrl - - returnedBy - - returnedDateTime - - status - - submittedBy - - submittedDateTime - - unsubmittedBy - - unsubmittedDateTime - - outcomes - - resources - - submittedResources + - description + - displayName + - externalSource + - externalSourceDetail + - address + - createdBy + - externalId + - externalPrincipalId + - fax + - highestGrade + - lowestGrade + - phone + - principalEmail + - principalName + - schoolNumber + - administrativeUnit + - classes + - users type: string - name: $expand in: query @@ -11296,9 +6431,9 @@ paths: items: enum: - '*' - - outcomes - - resources - - submittedResources + - administrativeUnit + - classes + - users type: string responses: '200': @@ -11306,13 +6441,13 @@ paths: content: application/json: schema: - title: Collection of educationSubmission + title: Collection of educationSchool type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationSchool' '@odata.nextLink': type: string additionalProperties: @@ -11325,31 +6460,15 @@ paths: x-ms-docs-operation-type: operation post: tags: - - education.educationUser - summary: Create new navigation property to submissions for education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.users.assignments_CreateSubmissions - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment + - education.educationSchool + summary: Create new navigation property to schools for education + operationId: education_CreateSchools requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationSchool' required: true responses: '201': @@ -11357,39 +6476,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationSchool' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}': + '/education/schools/{educationSchool-id}': get: tags: - - education.educationUser - summary: Get submissions from education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.users.assignments_GetSubmissions + - education.educationSchool + summary: Get schools from education + operationId: education_GetSchools parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool - name: $select in: query description: Select properties to be returned @@ -11401,20 +6505,24 @@ paths: items: enum: - id - - reassignedBy - - reassignedDateTime - - recipient - - resourcesFolderUrl - - returnedBy - - returnedDateTime - - status - - submittedBy - - submittedDateTime - - unsubmittedBy - - unsubmittedDateTime - - outcomes - - resources - - submittedResources + - description + - displayName + - externalSource + - externalSourceDetail + - address + - createdBy + - externalId + - externalPrincipalId + - fax + - highestGrade + - lowestGrade + - phone + - principalEmail + - principalName + - schoolNumber + - administrativeUnit + - classes + - users type: string - name: $expand in: query @@ -11427,9 +6535,9 @@ paths: items: enum: - '*' - - outcomes - - resources - - submittedResources + - administrativeUnit + - classes + - users type: string responses: '200': @@ -11437,63 +6545,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationSchool' links: - outcomes: - operationId: education.users.assignments.Submissions.ListOutcomes + administrativeUnit: + operationId: education.Schools.GetAdministrativeUnit parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id - resources: - operationId: education.users.assignments.Submissions.ListResources + educationSchool-id: $request.path.educationSchool-id + classes: + operationId: education.Schools.ListClasses parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id - submittedResources: - operationId: education.users.assignments.Submissions.ListSubmittedResources + educationSchool-id: $request.path.educationSchool-id + users: + operationId: education.Schools.ListUsers parameters: - educationUser-id: $request.path.educationUser-id - educationAssignment-id: $request.path.educationAssignment-id - educationSubmission-id: $request.path.educationSubmission-id + educationSchool-id: $request.path.educationSchool-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - education.educationUser - summary: Update the navigation property submissions in education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.users.assignments_UpdateSubmissions + - education.educationSchool + summary: Update the navigation property schools in education + operationId: education_UpdateSchools parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + $ref: '#/components/schemas/microsoft.graph.educationSchool' required: true responses: '204': @@ -11503,32 +6590,17 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - education.educationUser - summary: Delete navigation property submissions for education - description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' - operationId: education.users.assignments_DeleteSubmissions + - education.educationSchool + summary: Delete navigation property schools for education + operationId: education_DeleteSchools parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool - name: If-Match in: header description: ETag @@ -11540,225 +6612,185 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign': - post: - tags: - - education.Actions - summary: Invoke action reassign - operationId: education.users.assignments.submissions_reassign - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return': - post: - tags: - - education.Actions - summary: Invoke action return - operationId: education.users.assignments.submissions_return - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder': - post: + '/education/schools/{educationSchool-id}/administrativeUnit': + get: tags: - - education.Actions - summary: Invoke action setUpResourcesFolder - operationId: education.users.assignments.submissions_setUpResourcesFolder + - education.educationSchool + summary: Get administrativeUnit from education + description: The underlying administrativeUnit for this school. + operationId: education.schools_GetAdministrativeUnit parameters: - - name: educationUser-id + - name: educationSchool-id in: path - description: 'key: id of educationUser' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true + x-ms-docs-key-type: educationSchool + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true + uniqueItems: true + type: array + items: + enum: + - id + - deletedDateTime + - description + - displayName + - visibility + - members + - scopedRoleMembers + - extensions + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false schema: - type: string - x-ms-docs-key-type: educationSubmission + uniqueItems: true + type: array + items: + enum: + - '*' + - members + - scopedRoleMembers + - extensions + type: string responses: '200': - description: Success + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit': - post: - tags: - - education.Actions - summary: Invoke action submit - operationId: education.users.assignments.submissions_submit - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + $ref: '#/components/schemas/microsoft.graph.administrativeUnit' + links: + members: + operationId: education.schools.AdministrativeUnit.ListMembers + parameters: + educationSchool-id: $request.path.educationSchool-id + scopedRoleMembers: + operationId: education.schools.AdministrativeUnit.ListScopedRoleMembers + parameters: + educationSchool-id: $request.path.educationSchool-id + extensions: + operationId: education.schools.AdministrativeUnit.ListExtensions + parameters: + educationSchool-id: $request.path.educationSchool-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/education/schools/{educationSchool-id}/administrativeUnit/$ref': + get: + tags: + - education.educationSchool + summary: Get ref of administrativeUnit from education + description: The underlying administrativeUnit for this school. + operationId: education.schools_GetGraphRefAdministrativeUnit + parameters: + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool responses: '200': - description: Success + description: Retrieved navigation property link content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' + type: string + links: + members: + operationId: education.schools.AdministrativeUnit.ListMembers + parameters: + educationSchool-id: $request.path.educationSchool-id + scopedRoleMembers: + operationId: education.schools.AdministrativeUnit.ListScopedRoleMembers + parameters: + educationSchool-id: $request.path.educationSchool-id + extensions: + operationId: education.schools.AdministrativeUnit.ListExtensions + parameters: + educationSchool-id: $request.path.educationSchool-id default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit': - post: + x-ms-docs-operation-type: operation + put: tags: - - education.Actions - summary: Invoke action unsubmit - operationId: education.users.assignments.submissions_unsubmit + - education.educationSchool + summary: Update the ref of navigation property administrativeUnit in education + description: The underlying administrativeUnit for this school. + operationId: education.schools_SetGraphRefAdministrativeUnit parameters: - - name: educationUser-id + - name: educationSchool-id in: path - description: 'key: id of educationUser' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id + x-ms-docs-key-type: educationSchool + requestBody: + description: New navigation property ref values + content: + application/json: + schema: + type: object + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - education.educationSchool + summary: Delete ref of navigation property administrativeUnit for education + description: The underlying administrativeUnit for this school. + operationId: education.schools_DeleteGraphRefAdministrativeUnit + parameters: + - name: educationSchool-id in: path - description: 'key: id of educationAssignment' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true + x-ms-docs-key-type: educationSchool + - name: If-Match + in: header + description: ETag schema: type: string - x-ms-docs-key-type: educationSubmission responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmission' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes': + x-ms-docs-operation-type: operation + '/education/schools/{educationSchool-id}/classes': get: tags: - - education.educationUser - summary: Get outcomes from education - description: Read-Write. Nullable. - operationId: education.users.assignments.submissions_ListOutcomes + - education.educationSchool + summary: Get classes from education + description: Classes taught at the school. Nullable. + operationId: education.schools_ListClasses parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -11776,10 +6808,30 @@ paths: enum: - id - id desc - - lastModifiedBy - - lastModifiedBy desc - - lastModifiedDateTime - - lastModifiedDateTime desc + - classCode + - classCode desc + - course + - course desc + - createdBy + - createdBy desc + - description + - description desc + - displayName + - displayName desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc type: string - name: $select in: query @@ -11792,8 +6844,26 @@ paths: items: enum: - id - - lastModifiedBy - - lastModifiedDateTime + - classCode + - course + - createdBy + - description + - displayName + - externalId + - externalName + - externalSource + - externalSourceDetail + - grade + - mailNickname + - term + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string - name: $expand in: query @@ -11806,6 +6876,14 @@ paths: items: enum: - '*' + - assignmentCategories + - assignmentDefaults + - assignments + - assignmentSettings + - group + - members + - schools + - teachers type: string responses: '200': @@ -11813,13 +6891,13 @@ paths: content: application/json: schema: - title: Collection of educationOutcome + title: Collection of educationClass type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' + $ref: '#/components/schemas/microsoft.graph.educationClass' '@odata.nextLink': type: string additionalProperties: @@ -11830,90 +6908,29 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to outcomes for education - description: Read-Write. Nullable. - operationId: education.users.assignments.submissions_CreateOutcomes - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}': + '/education/schools/{educationSchool-id}/classes/$ref': get: tags: - - education.educationUser - summary: Get outcomes from education - description: Read-Write. Nullable. - operationId: education.users.assignments.submissions_GetOutcomes - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id + - education.educationSchool + summary: Get ref of classes from education + description: Classes taught at the school. Nullable. + operationId: education.schools_ListGraphRefClasses + parameters: + - name: educationSchool-id in: path - description: 'key: id of educationOutcome' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationOutcome - - name: $select + x-ms-docs-key-type: educationSchool + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby in: query - description: Select properties to be returned + description: Order items by property values style: form explode: false schema: @@ -11922,154 +6939,131 @@ paths: items: enum: - id - - lastModifiedBy - - lastModifiedDateTime - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' + - id desc + - classCode + - classCode desc + - course + - course desc + - createdBy + - createdBy desc + - description + - description desc + - displayName + - displayName desc + - externalId + - externalId desc + - externalName + - externalName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - grade + - grade desc + - mailNickname + - mailNickname desc + - term + - term desc type: string responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property links content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' + title: Collection of links of educationClass + type: object + properties: + value: + type: array + items: + type: string + '@odata.nextLink': + type: string + additionalProperties: + type: object default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - education.educationUser - summary: Update the navigation property outcomes in education - description: Read-Write. Nullable. - operationId: education.users.assignments.submissions_UpdateOutcomes + - education.educationSchool + summary: Create new navigation property ref to classes for education + description: Classes taught at the school. Nullable. + operationId: education.schools_CreateGraphRefClasses parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id + - name: educationSchool-id in: path - description: 'key: id of educationOutcome' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationOutcome + x-ms-docs-key-type: educationSchool requestBody: - description: New navigation property values + description: New navigation property ref value content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationOutcome' + type: object + additionalProperties: + type: object required: true responses: - '204': - description: Success + '201': + description: Created navigation property link. + content: + application/json: + schema: + type: object + additionalProperties: + type: object default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/education/schools/{educationSchool-id}/classes/microsoft.graph.delta()': + get: tags: - - education.educationUser - summary: Delete navigation property outcomes for education - description: Read-Write. Nullable. - operationId: education.users.assignments.submissions_DeleteOutcomes + - education.Functions + summary: Invoke function delta + operationId: education.schools.classes_delta parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationOutcome-id + - name: educationSchool-id in: path - description: 'key: id of educationOutcome' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationOutcome - - name: If-Match - in: header - description: ETag - schema: - type: string + x-ms-docs-key-type: educationSchool responses: - '204': + '200': description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationClass' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources': + x-ms-docs-operation-type: function + '/education/schools/{educationSchool-id}/users': get: tags: - - education.educationUser - summary: Get resources from education - description: Nullable. - operationId: education.users.assignments.submissions_ListResources + - education.educationSchool + summary: Get users from education + description: Users in the school. Nullable. + operationId: education.schools_ListUsers parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmission' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmission + x-ms-docs-key-type: educationSchool - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -12087,10 +7081,70 @@ paths: enum: - id - id desc - - assignmentResourceUrl - - assignmentResourceUrl desc - - resource - - resource desc + - relatedContacts + - relatedContacts desc + - accountEnabled + - accountEnabled desc + - assignedLicenses + - assignedLicenses desc + - assignedPlans + - assignedPlans desc + - businessPhones + - businessPhones desc + - createdBy + - createdBy desc + - department + - department desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - givenName + - givenName desc + - mail + - mail desc + - mailingAddress + - mailingAddress desc + - mailNickname + - mailNickname desc + - middleName + - middleName desc + - mobilePhone + - mobilePhone desc + - officeLocation + - officeLocation desc + - onPremisesInfo + - onPremisesInfo desc + - passwordPolicies + - passwordPolicies desc + - passwordProfile + - passwordProfile desc + - preferredLanguage + - preferredLanguage desc + - primaryRole + - primaryRole desc + - provisionedPlans + - provisionedPlans desc + - refreshTokensValidFromDateTime + - refreshTokensValidFromDateTime desc + - residenceAddress + - residenceAddress desc + - showInAddressList + - showInAddressList desc + - student + - student desc + - surname + - surname desc + - teacher + - teacher desc + - usageLocation + - usageLocation desc + - userPrincipalName + - userPrincipalName desc + - userType + - userType desc type: string - name: $select in: query @@ -12103,8 +7157,43 @@ paths: items: enum: - id - - assignmentResourceUrl - - resource + - relatedContacts + - accountEnabled + - assignedLicenses + - assignedPlans + - businessPhones + - createdBy + - department + - displayName + - externalSource + - externalSourceDetail + - givenName + - mail + - mailingAddress + - mailNickname + - middleName + - mobilePhone + - officeLocation + - onPremisesInfo + - passwordPolicies + - passwordProfile + - preferredLanguage + - primaryRole + - provisionedPlans + - refreshTokensValidFromDateTime + - residenceAddress + - showInAddressList + - student + - surname + - teacher + - usageLocation + - userPrincipalName + - userType + - rubrics + - classes + - schools + - taughtClasses + - user type: string - name: $expand in: query @@ -12117,6 +7206,11 @@ paths: items: enum: - '*' + - rubrics + - classes + - schools + - taughtClasses + - user type: string responses: '200': @@ -12124,13 +7218,13 @@ paths: content: application/json: schema: - title: Collection of educationSubmissionResource + title: Collection of educationUser type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' '@odata.nextLink': type: string additionalProperties: @@ -12141,90 +7235,29 @@ paths: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - post: - tags: - - education.educationUser - summary: Create new navigation property to resources for education - description: Nullable. - operationId: education.users.assignments.submissions_CreateResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}': + '/education/schools/{educationSchool-id}/users/$ref': get: tags: - - education.educationUser - summary: Get resources from education - description: Nullable. - operationId: education.users.assignments.submissions_GetResources + - education.educationSchool + summary: Get ref of users from education + description: Users in the school. Nullable. + operationId: education.schools_ListGraphRefUsers parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmissionResource' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmissionResource - - name: $select + x-ms-docs-key-type: educationSchool + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby in: query - description: Select properties to be returned + description: Order items by property values style: form explode: false schema: @@ -12233,154 +7266,181 @@ paths: items: enum: - id - - assignmentResourceUrl - - resource - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' + - id desc + - relatedContacts + - relatedContacts desc + - accountEnabled + - accountEnabled desc + - assignedLicenses + - assignedLicenses desc + - assignedPlans + - assignedPlans desc + - businessPhones + - businessPhones desc + - createdBy + - createdBy desc + - department + - department desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - givenName + - givenName desc + - mail + - mail desc + - mailingAddress + - mailingAddress desc + - mailNickname + - mailNickname desc + - middleName + - middleName desc + - mobilePhone + - mobilePhone desc + - officeLocation + - officeLocation desc + - onPremisesInfo + - onPremisesInfo desc + - passwordPolicies + - passwordPolicies desc + - passwordProfile + - passwordProfile desc + - preferredLanguage + - preferredLanguage desc + - primaryRole + - primaryRole desc + - provisionedPlans + - provisionedPlans desc + - refreshTokensValidFromDateTime + - refreshTokensValidFromDateTime desc + - residenceAddress + - residenceAddress desc + - showInAddressList + - showInAddressList desc + - student + - student desc + - surname + - surname desc + - teacher + - teacher desc + - usageLocation + - usageLocation desc + - userPrincipalName + - userPrincipalName desc + - userType + - userType desc type: string responses: '200': - description: Retrieved navigation property + description: Retrieved navigation property links content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + title: Collection of links of educationUser + type: object + properties: + value: + type: array + items: + type: string + '@odata.nextLink': + type: string + additionalProperties: + type: object default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: - tags: - - education.educationUser - summary: Update the navigation property resources in education - description: Nullable. - operationId: education.users.assignments.submissions_UpdateResources + post: + tags: + - education.educationSchool + summary: Create new navigation property ref to users for education + description: Users in the school. Nullable. + operationId: education.schools_CreateGraphRefUsers parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmissionResource' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmissionResource + x-ms-docs-key-type: educationSchool requestBody: - description: New navigation property values + description: New navigation property ref value content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + type: object + additionalProperties: + type: object required: true responses: - '204': - description: Success + '201': + description: Created navigation property link. + content: + application/json: + schema: + type: object + additionalProperties: + type: object default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/education/schools/{educationSchool-id}/users/microsoft.graph.delta()': + get: tags: - - education.educationUser - summary: Delete navigation property resources for education - description: Nullable. - operationId: education.users.assignments.submissions_DeleteResources + - education.Functions + summary: Invoke function delta + operationId: education.schools.users_delta parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id + - name: educationSchool-id in: path - description: 'key: id of educationSubmissionResource' + description: 'key: id of educationSchool' required: true schema: type: string - x-ms-docs-key-type: educationSubmissionResource - - name: If-Match - in: header - description: ETag - schema: - type: string + x-ms-docs-key-type: educationSchool responses: - '204': + '200': + description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationUser' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + /education/schools/microsoft.graph.delta(): + get: + tags: + - education.Functions + summary: Invoke function delta + operationId: education.schools_delta + responses: + '200': description: Success + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationSchool' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources': + x-ms-docs-operation-type: function + /education/users: get: tags: - education.educationUser - summary: Get submittedResources from education - description: Read-only. Nullable. - operationId: education.users.assignments.submissions_ListSubmittedResources + summary: Get users from education + operationId: education_ListUsers parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -12398,10 +7458,70 @@ paths: enum: - id - id desc - - assignmentResourceUrl - - assignmentResourceUrl desc - - resource - - resource desc + - relatedContacts + - relatedContacts desc + - accountEnabled + - accountEnabled desc + - assignedLicenses + - assignedLicenses desc + - assignedPlans + - assignedPlans desc + - businessPhones + - businessPhones desc + - createdBy + - createdBy desc + - department + - department desc + - displayName + - displayName desc + - externalSource + - externalSource desc + - externalSourceDetail + - externalSourceDetail desc + - givenName + - givenName desc + - mail + - mail desc + - mailingAddress + - mailingAddress desc + - mailNickname + - mailNickname desc + - middleName + - middleName desc + - mobilePhone + - mobilePhone desc + - officeLocation + - officeLocation desc + - onPremisesInfo + - onPremisesInfo desc + - passwordPolicies + - passwordPolicies desc + - passwordProfile + - passwordProfile desc + - preferredLanguage + - preferredLanguage desc + - primaryRole + - primaryRole desc + - provisionedPlans + - provisionedPlans desc + - refreshTokensValidFromDateTime + - refreshTokensValidFromDateTime desc + - residenceAddress + - residenceAddress desc + - showInAddressList + - showInAddressList desc + - student + - student desc + - surname + - surname desc + - teacher + - teacher desc + - usageLocation + - usageLocation desc + - userPrincipalName + - userPrincipalName desc + - userType + - userType desc type: string - name: $select in: query @@ -12414,8 +7534,43 @@ paths: items: enum: - id - - assignmentResourceUrl - - resource + - relatedContacts + - accountEnabled + - assignedLicenses + - assignedPlans + - businessPhones + - createdBy + - department + - displayName + - externalSource + - externalSourceDetail + - givenName + - mail + - mailingAddress + - mailNickname + - middleName + - mobilePhone + - officeLocation + - onPremisesInfo + - passwordPolicies + - passwordProfile + - preferredLanguage + - primaryRole + - provisionedPlans + - refreshTokensValidFromDateTime + - residenceAddress + - showInAddressList + - student + - surname + - teacher + - usageLocation + - userPrincipalName + - userType + - rubrics + - classes + - schools + - taughtClasses + - user type: string - name: $expand in: query @@ -12428,6 +7583,11 @@ paths: items: enum: - '*' + - rubrics + - classes + - schools + - taughtClasses + - user type: string responses: '200': @@ -12435,13 +7595,13 @@ paths: content: application/json: schema: - title: Collection of educationSubmissionResource + title: Collection of educationUser type: object properties: value: type: array items: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' '@odata.nextLink': type: string additionalProperties: @@ -12455,37 +7615,14 @@ paths: post: tags: - education.educationUser - summary: Create new navigation property to submittedResources for education - description: Read-only. Nullable. - operationId: education.users.assignments.submissions_CreateSubmittedResources - parameters: - - name: educationUser-id - in: path - description: 'key: id of educationUser' - required: true - schema: - type: string - x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission + summary: Create new navigation property to users for education + operationId: education_CreateUsers requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' required: true responses: '201': @@ -12493,17 +7630,16 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}': + '/education/users/{educationUser-id}': get: tags: - education.educationUser - summary: Get submittedResources from education - description: Read-only. Nullable. - operationId: education.users.assignments.submissions_GetSubmittedResources + summary: Get users from education + operationId: education_GetUsers parameters: - name: educationUser-id in: path @@ -12512,27 +7648,6 @@ paths: schema: type: string x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - name: $select in: query description: Select properties to be returned @@ -12544,8 +7659,43 @@ paths: items: enum: - id - - assignmentResourceUrl - - resource + - relatedContacts + - accountEnabled + - assignedLicenses + - assignedPlans + - businessPhones + - createdBy + - department + - displayName + - externalSource + - externalSourceDetail + - givenName + - mail + - mailingAddress + - mailNickname + - middleName + - mobilePhone + - officeLocation + - onPremisesInfo + - passwordPolicies + - passwordProfile + - preferredLanguage + - primaryRole + - provisionedPlans + - refreshTokensValidFromDateTime + - residenceAddress + - showInAddressList + - student + - surname + - teacher + - usageLocation + - userPrincipalName + - userType + - rubrics + - classes + - schools + - taughtClasses + - user type: string - name: $expand in: query @@ -12558,6 +7708,11 @@ paths: items: enum: - '*' + - rubrics + - classes + - schools + - taughtClasses + - user type: string responses: '200': @@ -12565,16 +7720,36 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' + links: + rubrics: + operationId: education.Users.ListRubrics + parameters: + educationUser-id: $request.path.educationUser-id + classes: + operationId: education.Users.ListClasses + parameters: + educationUser-id: $request.path.educationUser-id + schools: + operationId: education.Users.ListSchools + parameters: + educationUser-id: $request.path.educationUser-id + taughtClasses: + operationId: education.Users.ListTaughtClasses + parameters: + educationUser-id: $request.path.educationUser-id + user: + operationId: education.Users.GetUser + parameters: + educationUser-id: $request.path.educationUser-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - education.educationUser - summary: Update the navigation property submittedResources in education - description: Read-only. Nullable. - operationId: education.users.assignments.submissions_UpdateSubmittedResources + summary: Update the navigation property users in education + operationId: education_UpdateUsers parameters: - name: educationUser-id in: path @@ -12583,33 +7758,12 @@ paths: schema: type: string x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.educationSubmissionResource' + $ref: '#/components/schemas/microsoft.graph.educationUser' required: true responses: '204': @@ -12620,9 +7774,8 @@ paths: delete: tags: - education.educationUser - summary: Delete navigation property submittedResources for education - description: Read-only. Nullable. - operationId: education.users.assignments.submissions_DeleteSubmittedResources + summary: Delete navigation property users for education + operationId: education_DeleteUsers parameters: - name: educationUser-id in: path @@ -12631,27 +7784,6 @@ paths: schema: type: string x-ms-docs-key-type: educationUser - - name: educationAssignment-id - in: path - description: 'key: id of educationAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: educationAssignment - - name: educationSubmission-id - in: path - description: 'key: id of educationSubmission' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmission - - name: educationSubmissionResource-id - in: path - description: 'key: id of educationSubmissionResource' - required: true - schema: - type: string - x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag @@ -14547,8 +9679,6 @@ components: properties: addedStudentAction: $ref: '#/components/schemas/microsoft.graph.educationAddedStudentAction' - addToCalendarAction: - $ref: '#/components/schemas/microsoft.graph.educationAddToCalendarOptions' dueTime: pattern: '^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$' type: string @@ -14569,8 +9699,6 @@ components: properties: addedStudentAction: $ref: '#/components/schemas/microsoft.graph.educationAddedStudentAction' - addToCalendarAction: - $ref: '#/components/schemas/microsoft.graph.educationAddToCalendarOptions' allowLateSubmissions: type: boolean description: 'Identifies whether students can submit after the due date. If this property isn''t specified during create, it defaults to true.' @@ -14728,14 +9856,6 @@ components: - title: educationSubmission type: object properties: - reassignedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - reassignedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Moment in time when the submission was reassigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true recipient: $ref: '#/components/schemas/microsoft.graph.educationSubmissionRecipient' resourcesFolderUrl: @@ -15233,11 +10353,6 @@ components: type: string description: 'A string value that can be used to classify user types in your directory, such as ''Member'' and ''Guest''. Supports $filter.' nullable: true - assignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.educationAssignment' - description: Assignments belonging to the user. rubrics: type: array items: @@ -15565,7 +10680,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -15938,15 +11053,6 @@ components: - assignIfOpen - unknownFutureValue type: string - microsoft.graph.educationAddToCalendarOptions: - title: educationAddToCalendarOptions - enum: - - none - - studentsAndPublisher - - studentsAndTeamOwners - - unknownFutureValue - - studentsOnly - type: string microsoft.graph.educationAssignmentRecipient: title: educationAssignmentRecipient type: object @@ -16059,7 +11165,6 @@ components: - released - returned - unknownFutureValue - - reassigned type: string microsoft.graph.directoryObject: allOf: @@ -17075,12 +12180,6 @@ components: type: string description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here.' nullable: true - lastUpdatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp when the state of the license assignment was last updated. - format: date-time - nullable: true skuId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string @@ -18320,11 +13419,6 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true - attendanceReports: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' - description: The attendance reports of an online meeting. Read-only. additionalProperties: type: object microsoft.graph.presence: @@ -18393,7 +13487,7 @@ components: nullable: true webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -21097,38 +16191,6 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: type: object - microsoft.graph.meetingAttendanceReport: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingAttendanceReport - type: object - properties: - meetingEndDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting ended. Read-only. - format: date-time - nullable: true - meetingStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting started. Read-only. - format: date-time - nullable: true - totalParticipantCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total number of participants. Read-only. - format: int32 - nullable: true - attendanceRecords: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceRecord' - description: List of attendance records of an attendance report. Read-only. - additionalProperties: - type: object microsoft.graph.fido2AuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -22159,7 +17221,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -22170,20 +17232,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -22191,11 +17253,11 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -23969,36 +19031,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.attendanceRecord: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: attendanceRecord - type: object - properties: - attendanceIntervals: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. - emailAddress: - type: string - description: Email address of the user associated with this atttendance record. - nullable: true - identity: - $ref: '#/components/schemas/microsoft.graph.identity' - role: - type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' - nullable: true - totalAttendanceInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total duration of the attendances in seconds. - format: int32 - nullable: true - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -25190,31 +20222,6 @@ components: - unknownFutureValue - producer type: string - microsoft.graph.attendanceInterval: - title: attendanceInterval - type: object - properties: - durationInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' - format: int32 - nullable: true - joinDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee joined in UTC. - format: date-time - nullable: true - leaveDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee left in UTC. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.alternativeSecurityId: title: alternativeSecurityId type: object diff --git a/openApiDocs/v1.0/Files.yml b/openApiDocs/v1.0/Files.yml index 3f5c46d3861..1934b48eab0 100644 --- a/openApiDocs/v1.0/Files.yml +++ b/openApiDocs/v1.0/Files.yml @@ -17479,7 +17479,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -17490,20 +17490,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -17511,11 +17511,11 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -19237,7 +19237,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -20309,12 +20309,6 @@ components: type: string description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here.' nullable: true - lastUpdatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp when the state of the license assignment was last updated. - format: date-time - nullable: true skuId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string @@ -21909,11 +21903,6 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true - attendanceReports: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' - description: The attendance reports of an online meeting. Read-only. additionalProperties: type: object microsoft.graph.presence: @@ -21982,7 +21971,7 @@ components: nullable: true webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -23967,38 +23956,6 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: type: object - microsoft.graph.meetingAttendanceReport: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingAttendanceReport - type: object - properties: - meetingEndDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting ended. Read-only. - format: date-time - nullable: true - meetingStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting started. Read-only. - format: date-time - nullable: true - totalParticipantCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total number of participants. Read-only. - format: int32 - nullable: true - attendanceRecords: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceRecord' - description: List of attendance records of an attendance report. Read-only. - additionalProperties: - type: object microsoft.graph.fido2AuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -26003,36 +25960,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.attendanceRecord: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: attendanceRecord - type: object - properties: - attendanceIntervals: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. - emailAddress: - type: string - description: Email address of the user associated with this atttendance record. - nullable: true - identity: - $ref: '#/components/schemas/microsoft.graph.identity' - role: - type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' - nullable: true - totalAttendanceInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total duration of the attendances in seconds. - format: int32 - nullable: true - additionalProperties: - type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -27188,31 +27115,6 @@ components: - unknownFutureValue - producer type: string - microsoft.graph.attendanceInterval: - title: attendanceInterval - type: object - properties: - durationInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' - format: int32 - nullable: true - joinDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee joined in UTC. - format: date-time - nullable: true - leaveDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee left in UTC. - format: date-time - nullable: true - additionalProperties: - type: object microsoft.graph.alternativeSecurityId: title: alternativeSecurityId type: object diff --git a/openApiDocs/v1.0/Groups.yml b/openApiDocs/v1.0/Groups.yml index f164622a1a8..7ff60df0331 100644 --- a/openApiDocs/v1.0/Groups.yml +++ b/openApiDocs/v1.0/Groups.yml @@ -20923,6 +20923,9 @@ components: properties: attachmentType: $ref: '#/components/schemas/microsoft.graph.attachmentType' + contentId: + type: string + nullable: true contentType: type: string description: The nature of the data in the attachment. Optional. @@ -24083,7 +24086,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' diff --git a/openApiDocs/v1.0/Identity.SignIns.yml b/openApiDocs/v1.0/Identity.SignIns.yml index bebbbb7dec8..7896aba932b 100644 --- a/openApiDocs/v1.0/Identity.SignIns.yml +++ b/openApiDocs/v1.0/Identity.SignIns.yml @@ -8180,7 +8180,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' diff --git a/openApiDocs/v1.0/Sites.yml b/openApiDocs/v1.0/Sites.yml index 99e39307dbc..f039b76adc2 100644 --- a/openApiDocs/v1.0/Sites.yml +++ b/openApiDocs/v1.0/Sites.yml @@ -48348,7 +48348,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' diff --git a/openApiDocs/v1.0/Teams.yml b/openApiDocs/v1.0/Teams.yml index 031945f7b3e..f0bc6ebef54 100644 --- a/openApiDocs/v1.0/Teams.yml +++ b/openApiDocs/v1.0/Teams.yml @@ -14721,7 +14721,7 @@ components: nullable: true webUrl: type: string - description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -16906,7 +16906,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -16917,20 +16917,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. + description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' format: date-time includeResourceData: type: boolean - description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' + description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' nullable: true latestSupportedTlsVersion: type: string @@ -16938,11 +16938,11 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' + description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' nullable: true notificationQueryOptions: type: string - description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' + description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -18258,7 +18258,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' @@ -18287,7 +18287,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -20043,6 +20043,12 @@ components: type: string description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here.' nullable: true + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the state of the license assignment was last updated. + format: date-time + nullable: true skuId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string @@ -21318,6 +21324,11 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true + attendanceReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' + description: The attendance reports of an online meeting. Read-only. additionalProperties: type: object microsoft.graph.presence: @@ -23541,6 +23552,38 @@ components: $ref: '#/components/schemas/microsoft.graph.meetingParticipantInfo' additionalProperties: type: object + microsoft.graph.meetingAttendanceReport: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: meetingAttendanceReport + type: object + properties: + meetingEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting ended. Read-only. + format: date-time + nullable: true + meetingStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: UTC time when the meeting started. Read-only. + format: date-time + nullable: true + totalParticipantCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total number of participants. Read-only. + format: int32 + nullable: true + attendanceRecords: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceRecord' + description: List of attendance records of an attendance report. Read-only. + additionalProperties: + type: object microsoft.graph.fido2AuthenticationMethod: allOf: - $ref: '#/components/schemas/microsoft.graph.authenticationMethod' @@ -24740,6 +24783,36 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.attendanceRecord: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: attendanceRecord + type: object + properties: + attendanceIntervals: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attendanceInterval' + description: List of time periods between joining and leaving a meeting. + emailAddress: + type: string + description: Email address of the user associated with this atttendance record. + nullable: true + identity: + $ref: '#/components/schemas/microsoft.graph.identity' + role: + type: string + description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' + nullable: true + totalAttendanceInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Total duration of the attendances in seconds. + format: int32 + nullable: true + additionalProperties: + type: object microsoft.graph.attestationLevel: title: attestationLevel enum: @@ -25250,6 +25323,31 @@ components: - unknownFutureValue - producer type: string + microsoft.graph.attendanceInterval: + title: attendanceInterval + type: object + properties: + durationInSeconds: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' + format: int32 + nullable: true + joinDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee joined in UTC. + format: date-time + nullable: true + leaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The time the attendee left in UTC. + format: date-time + nullable: true + additionalProperties: + type: object microsoft.graph.alternativeSecurityId: title: alternativeSecurityId type: object diff --git a/openApiDocs/v1.0/Users.Actions.yml b/openApiDocs/v1.0/Users.Actions.yml index 1a389e9b7fa..bcc49d7185e 100644 --- a/openApiDocs/v1.0/Users.Actions.yml +++ b/openApiDocs/v1.0/Users.Actions.yml @@ -21284,7 +21284,7 @@ components: nullable: true userPrincipalName: type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' nullable: true userType: type: string @@ -21905,11 +21905,6 @@ components: type: string description: The video teleconferencing ID. Read-only. nullable: true - attendanceReports: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' - description: The attendance reports of an online meeting. Read-only. additionalProperties: type: object microsoft.graph.teamworkActivityTopic: @@ -22862,12 +22857,6 @@ components: type: string description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here.' nullable: true - lastUpdatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp when the state of the license assignment was last updated. - format: date-time - nullable: true skuId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string @@ -24187,7 +24176,7 @@ components: nullable: true webUrl: type: string - description: 'The URL for the chat in Microsoft Teams. The URL should be treated as an opaque blob, and not parsed. Read-only.' + description: 'A hyperlink that will go to the chat in Microsoft Teams. This URL should be treated as an opaque blob, and not parsed. Read-only.' nullable: true installedApps: type: array @@ -24610,38 +24599,6 @@ components: $ref: '#/components/schemas/microsoft.graph.lobbyBypassScope' additionalProperties: type: object - microsoft.graph.meetingAttendanceReport: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: meetingAttendanceReport - type: object - properties: - meetingEndDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting ended. Read-only. - format: date-time - nullable: true - meetingStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: UTC time when the meeting started. Read-only. - format: date-time - nullable: true - totalParticipantCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total number of participants. Read-only. - format: int32 - nullable: true - attendanceRecords: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceRecord' - description: List of attendance records of an attendance report. Read-only. - additionalProperties: - type: object microsoft.graph.teamworkActivityTopicSource: title: teamworkActivityTopicSource enum: @@ -27903,36 +27860,6 @@ components: - invited - organizationExcludingGuests type: string - microsoft.graph.attendanceRecord: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: attendanceRecord - type: object - properties: - attendanceIntervals: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendanceInterval' - description: List of time periods between joining and leaving a meeting. - emailAddress: - type: string - description: Email address of the user associated with this atttendance record. - nullable: true - identity: - $ref: '#/components/schemas/microsoft.graph.identity' - role: - type: string - description: 'Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.' - nullable: true - totalAttendanceInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Total duration of the attendances in seconds. - format: int32 - nullable: true - additionalProperties: - type: object odata.error.main: required: - code @@ -29044,7 +28971,7 @@ components: nullable: true changeType: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' + description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' clientState: type: string description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. @@ -29055,20 +28982,20 @@ components: nullable: true encryptionCertificate: type: string - description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional. Required when includeResourceData is true. nullable: true encryptionCertificateId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. + description: A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time.' format: date-time includeResourceData: type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + description: 'When set to true, change notifications include resource data (such as content of a chat message). Optional.' nullable: true latestSupportedTlsVersion: type: string @@ -29076,11 +29003,11 @@ components: nullable: true lifecycleNotificationUrl: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.' nullable: true notificationQueryOptions: type: string - description: 'OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.' nullable: true notificationUrl: type: string @@ -31008,31 +30935,6 @@ components: description: A collection of resources linked to the task. additionalProperties: type: object - microsoft.graph.attendanceInterval: - title: attendanceInterval - type: object - properties: - durationInSeconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime.' - format: int32 - nullable: true - joinDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee joined in UTC. - format: date-time - nullable: true - leaveDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The time the attendee left in UTC. - format: date-time - nullable: true - additionalProperties: - type: object odata.error.detail: required: - code diff --git a/openApiDocs/v1.0/Users.Functions.yml b/openApiDocs/v1.0/Users.Functions.yml index e682d4eb07c..5840ee1ce07 100644 --- a/openApiDocs/v1.0/Users.Functions.yml +++ b/openApiDocs/v1.0/Users.Functions.yml @@ -6790,7 +6790,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' diff --git a/openApiDocs/v1.0/Users.yml b/openApiDocs/v1.0/Users.yml index f5e4fdf7546..9d280ab817f 100644 --- a/openApiDocs/v1.0/Users.yml +++ b/openApiDocs/v1.0/Users.yml @@ -5668,7 +5668,7 @@ components: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only, Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith).' showInAddressList: type: boolean description: 'true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. Supports $filter (eq, ne, not, in).' diff --git a/profiles/Bookings/crawl-log-v1.0-beta.json b/profiles/Bookings/crawl-log-v1.0-beta.json index feff81b536d..75be600ba78 100644 --- a/profiles/Bookings/crawl-log-v1.0-beta.json +++ b/profiles/Bookings/crawl-log-v1.0-beta.json @@ -41,6 +41,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Bookings.yml" }, + "/bookingBusinesses/{bookingBusiness-id}/customQuestions": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Bookings.yml" + }, + "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Bookings.yml" + }, "/bookingBusinesses/{bookingBusiness-id}/microsoft.graph.publish": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Bookings.yml" diff --git a/profiles/Bookings/definitions/v1.0-beta.md b/profiles/Bookings/definitions/v1.0-beta.md index db427a13339..afc3c842ce2 100644 --- a/profiles/Bookings/definitions/v1.0-beta.md +++ b/profiles/Bookings/definitions/v1.0-beta.md @@ -17,6 +17,8 @@ profiles: /bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/microsoft.graph.cancel: v1.0-beta /bookingBusinesses/{bookingBusiness-id}/customers: v1.0-beta /bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}: v1.0-beta + /bookingBusinesses/{bookingBusiness-id}/customQuestions: v1.0-beta + /bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}: v1.0-beta /bookingBusinesses/{bookingBusiness-id}/microsoft.graph.publish: v1.0-beta /bookingBusinesses/{bookingBusiness-id}/microsoft.graph.unpublish: v1.0-beta /bookingBusinesses/{bookingBusiness-id}/services: v1.0-beta diff --git a/profiles/CloudCommunications/crawl-log-v1.0.json b/profiles/CloudCommunications/crawl-log-v1.0.json index 01f8a3ef090..cada2144b72 100644 --- a/profiles/CloudCommunications/crawl-log-v1.0.json +++ b/profiles/CloudCommunications/crawl-log-v1.0.json @@ -145,6 +145,22 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" }, + "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" @@ -177,6 +193,22 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" }, + "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, + "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}": { + "apiVersion": "v1.0", + "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" + }, "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml" diff --git a/profiles/CloudCommunications/definitions/v1.0.md b/profiles/CloudCommunications/definitions/v1.0.md index e1f0c206b78..3fbaf4c7aa6 100644 --- a/profiles/CloudCommunications/definitions/v1.0.md +++ b/profiles/CloudCommunications/definitions/v1.0.md @@ -43,6 +43,11 @@ profiles: /communications/microsoft.graph.getPresencesByUserId: v1.0 /communications/onlineMeetings: v1.0 /communications/onlineMeetings/{onlineMeeting-id}: v1.0 + /communications/onlineMeetings/{onlineMeeting-id}/attendanceReports: v1.0 + /communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}: v1.0 + /communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords: v1.0 + ? /communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id} + : v1.0 /communications/onlineMeetings/{onlineMeeting-id}/attendeeReport: v1.0 /communications/onlineMeetings/microsoft.graph.createOrGet: v1.0 /communications/presences: v1.0 @@ -51,6 +56,11 @@ profiles: /communications/presences/{presence-id}/microsoft.graph.setPresence: v1.0 /users/{user-id}/onlineMeetings: v1.0 /users/{user-id}/onlineMeetings/{onlineMeeting-id}: v1.0 + /users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports: v1.0 + /users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}: v1.0 + /users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords: v1.0 + ? /users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id} + : v1.0 /users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport: v1.0 /users/{user-id}/presence: v1.0 diff --git a/profiles/Education/crawl-log-v1.0.json b/profiles/Education/crawl-log-v1.0.json index d9a3a3c969e..f17eab91a9e 100644 --- a/profiles/Education/crawl-log-v1.0.json +++ b/profiles/Education/crawl-log-v1.0.json @@ -69,10 +69,6 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" }, - "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" @@ -169,94 +165,6 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" }, - "/education/me/assignments": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/categories": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/resources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/rubric": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, "/education/me/classes": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" @@ -361,94 +269,6 @@ "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" }, - "/education/users/{educationUser-id}/assignments": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, - "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}": { - "apiVersion": "v1.0", - "originalLocation": "/openApiDocs/v1.0/Education.yml" - }, "/education/users/{educationUser-id}/classes": { "apiVersion": "v1.0", "originalLocation": "/openApiDocs/v1.0/Education.yml" diff --git a/profiles/Education/definitions/v1.0.md b/profiles/Education/definitions/v1.0.md index 7602ab4f7ee..a9e707561f7 100644 --- a/profiles/Education/definitions/v1.0.md +++ b/profiles/Education/definitions/v1.0.md @@ -24,8 +24,6 @@ profiles: /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric: v1.0 /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions: v1.0 /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0 - ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign - : v1.0 ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return : v1.0 ? /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder @@ -58,30 +56,6 @@ profiles: /education/classes/{educationClass-id}/teachers/microsoft.graph.delta(): v1.0 /education/classes/microsoft.graph.delta(): v1.0 /education/me: v1.0 - /education/me/assignments: v1.0 - /education/me/assignments/{educationAssignment-id}: v1.0 - /education/me/assignments/{educationAssignment-id}/categories: v1.0 - /education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}: v1.0 - /education/me/assignments/{educationAssignment-id}/microsoft.graph.publish: v1.0 - /education/me/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder: v1.0 - /education/me/assignments/{educationAssignment-id}/resources: v1.0 - /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}: v1.0 - /education/me/assignments/{educationAssignment-id}/rubric: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}: v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources: v1.0 - ? /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id} - : v1.0 - /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources: v1.0 - ? /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id} - : v1.0 /education/me/classes: v1.0 /education/me/classes/$ref: v1.0 /education/me/classes/microsoft.graph.delta(): v1.0 @@ -108,36 +82,6 @@ profiles: /education/schools/microsoft.graph.delta(): v1.0 /education/users: v1.0 /education/users/{educationUser-id}: v1.0 - /education/users/{educationUser-id}/assignments: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.setUpResourcesFolder: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions: v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}: v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.reassign - : v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return - : v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.setUpResourcesFolder - : v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit - : v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit - : v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes: v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id} - : v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources: v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id} - : v1.0 - /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources: v1.0 - ? /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id} - : v1.0 /education/users/{educationUser-id}/classes: v1.0 /education/users/{educationUser-id}/classes/$ref: v1.0 /education/users/{educationUser-id}/classes/microsoft.graph.delta(): v1.0 diff --git a/profiles/Reports/crawl-log-v1.0-beta.json b/profiles/Reports/crawl-log-v1.0-beta.json index 715ffaa7d9b..82223134bcb 100644 --- a/profiles/Reports/crawl-log-v1.0-beta.json +++ b/profiles/Reports/crawl-log-v1.0-beta.json @@ -97,6 +97,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Reports.yml" }, + "/reports/authenticationMethods/userRegistrationDetails": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Reports.yml" + }, + "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Reports.yml" + }, "/reports/credentialUserRegistrationDetails": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Reports.yml" diff --git a/profiles/Reports/definitions/v1.0-beta.md b/profiles/Reports/definitions/v1.0-beta.md index 1afb5c6d724..c06dec78155 100644 --- a/profiles/Reports/definitions/v1.0-beta.md +++ b/profiles/Reports/definitions/v1.0-beta.md @@ -33,6 +33,8 @@ profiles: /reports/authenticationMethods/microsoft.graph.usersRegisteredByMethod(): v1.0-beta ? /reports/authenticationMethods/microsoft.graph.usersRegisteredByMethod(includedUserTypes={includedUserTypes},includedUserRoles={includedUserRoles}) : v1.0-beta + /reports/authenticationMethods/userRegistrationDetails: v1.0-beta + /reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}: v1.0-beta /reports/credentialUserRegistrationDetails: v1.0-beta /reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}: v1.0-beta /reports/dailyPrintUsageByPrinter: v1.0-beta diff --git a/profiles/Sites/crawl-log-v1.0-beta.json b/profiles/Sites/crawl-log-v1.0-beta.json index 78febd7ae51..3cdc58237e2 100644 --- a/profiles/Sites/crawl-log-v1.0-beta.json +++ b/profiles/Sites/crawl-log-v1.0-beta.json @@ -89,6 +89,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" }, + "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, + "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" @@ -145,6 +153,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" }, + "/sites/{site-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, + "/sites/{site-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, "/sites/{site-id}/drive": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" @@ -309,6 +325,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" }, + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, + "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" @@ -365,6 +389,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" }, + "/sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, + "/sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes()": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, "/sites/{site-id}/lists/{list-id}/drive": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" @@ -449,6 +481,14 @@ "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" }, + "/sites/{site-id}/lists/{list-id}/operations": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, + "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}": { + "apiVersion": "v1.0-beta", + "originalLocation": "/openApiDocs/beta/Sites.yml" + }, "/sites/{site-id}/lists/{list-id}/subscriptions": { "apiVersion": "v1.0-beta", "originalLocation": "/openApiDocs/beta/Sites.yml" diff --git a/profiles/Sites/definitions/v1.0-beta.md b/profiles/Sites/definitions/v1.0-beta.md index ae257a8d545..7905463b916 100644 --- a/profiles/Sites/definitions/v1.0-beta.md +++ b/profiles/Sites/definitions/v1.0-beta.md @@ -29,6 +29,8 @@ profiles: /sites/{site-id}/contentTypes/{contentType-id}/baseTypes: v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref: v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy: v1.0-beta + /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub: v1.0-beta + /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes(): v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/columnLinks: v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}: v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/columnPositions: v1.0-beta @@ -43,6 +45,8 @@ profiles: /sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.publish: v1.0-beta /sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.unpublish: v1.0-beta /sites/{site-id}/contentTypes/microsoft.graph.addCopy: v1.0-beta + /sites/{site-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub: v1.0-beta + /sites/{site-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes(): v1.0-beta /sites/{site-id}/drive: v1.0-beta /sites/{site-id}/drives: v1.0-beta /sites/{site-id}/drives/{drive-id}: v1.0-beta @@ -86,6 +90,8 @@ profiles: /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy: v1.0-beta + /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopyFromContentTypeHub: v1.0-beta + /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.getCompatibleHubContentTypes(): v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions: v1.0-beta @@ -100,6 +106,8 @@ profiles: /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.publish: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.unpublish: v1.0-beta /sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.addCopy: v1.0-beta + /sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.addCopyFromContentTypeHub: v1.0-beta + /sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.getCompatibleHubContentTypes(): v1.0-beta /sites/{site-id}/lists/{list-id}/drive: v1.0-beta /sites/{site-id}/lists/{list-id}/items: v1.0-beta /sites/{site-id}/lists/{list-id}/items/{listItem-id}: v1.0-beta @@ -123,6 +131,8 @@ profiles: /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}: v1.0-beta /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields: v1.0-beta /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion: v1.0-beta + /sites/{site-id}/lists/{list-id}/operations: v1.0-beta + /sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}: v1.0-beta /sites/{site-id}/lists/{list-id}/subscriptions: v1.0-beta /sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}: v1.0-beta ? /sites/{site-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 index 8add6ff470c..b3cf413b0eb 100644 --- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 +++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft # -# Generated on: 1/7/2022 +# Generated on: 1/12/2022 # @{ diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index efc808c196b..36eb0a5c3d1 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -1,9 +1,9 @@ [ { - "Command": "Add-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/applyDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Add-MgAccessReviewDecision", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -18,48 +18,48 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Apply", "ApplyViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Add-MgApplicationKey", "Uri": "/applications/{application-id}/addKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgApplicationKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyCredential", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphKeyCredential", + "Module": "Applications" }, { - "Command": "Add-MgApplicationKey", "Uri": "/applications/{application-id}/addKey", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgApplicationKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphKeyCredential", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphKeyCredential", + "Module": "Applications" }, { - "Command": "Add-MgApplicationPassword", "Uri": "/applications/{application-id}/addPassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgApplicationPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -74,20 +74,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordCredential", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordCredential", + "Module": "Applications" }, { - "Command": "Add-MgApplicationPassword", "Uri": "/applications/{application-id}/addPassword", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgApplicationPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -102,50 +102,50 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordCredential", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPasswordCredential", + "Module": "Applications" }, { - "Command": "Add-MgChatMember", "Uri": "/chats/{chat-id}/members/add", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgChatMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgChatMember", "Uri": "/chats/{chat-id}/members/add", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgChatMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgComplianceEdiscoveryCaseReviewSetQueryTag", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/applyTags", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Add-MgComplianceEdiscoveryCaseReviewSetQueryTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -160,20 +160,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/addToReviewSet", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -188,189 +188,189 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Add-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/addLanguageFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Add-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Add-MgDriveListContentTypeBaseTypeCopy", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Add-MgDriveListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Add-MgDriveListContentTypeBaseTypeCopy", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Add-MgDriveListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Add-MgDriveListContentTypeCopy", "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Add-MgDriveListContentTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Add-MgDriveListContentTypeCopy", "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Add-MgDriveListContentTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Add-MgGroupFavorite", "Uri": "/groups/{group-id}/addFavorite", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Add-MgGroupFavorite", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add", "AddViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Add-MgGroupFavorite", "Uri": "/groups/{group-id}/addFavorite", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Add-MgGroupFavorite", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Add1", "AddViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Add-MgGroupToLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Add-MgGroupToLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Add-MgGroupToLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Add-MgGroupToLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Add-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Add-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Apply", "ApplyViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Add-MgServicePrincipalKey", "Uri": "/servicePrincipals/{servicePrincipal-id}/addKey", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgServicePrincipalKey", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -391,20 +391,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphKeyCredential", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphKeyCredential", + "Module": "Applications" }, { - "Command": "Add-MgServicePrincipalPassword", "Uri": "/servicePrincipals/{servicePrincipal-id}/addPassword", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgServicePrincipalPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -419,20 +419,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordCredential", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordCredential", + "Module": "Applications" }, { - "Command": "Add-MgServicePrincipalTokenSigningCertificate", "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Add-MgServicePrincipalTokenSigningCertificate", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -447,670 +447,730 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSelfSignedCertificate", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSelfSignedCertificate", + "Module": "Applications" }, { - "Command": "Add-MgShareListContentTypeBaseTypeCopy", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Add-MgShareListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Add-MgShareListContentTypeBaseTypeCopy", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Add-MgShareListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Add-MgShareListContentTypeCopy", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Add-MgShareListContentTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Add-MgShareListContentTypeCopy", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Add-MgShareListContentTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Add-MgSiteContentTypeBaseTypeCopy", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteContentTypeBaseTypeCopy", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Add-MgSiteContentTypeBaseTypeCopyFromContentTypeHub", + "Permissions": [], "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteContentTypeCopy", "Uri": "/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteContentTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteContentTypeCopy", "Uri": "/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteContentTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub", + "Permissions": [], "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteListContentTypeBaseTypeCopy", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteListContentTypeBaseTypeCopy", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/addCopy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteListContentTypeBaseTypeCopy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Add-MgSiteListContentTypeCopy", - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteListContentTypeBaseTypeCopyFromContentTypeHub", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgSiteListContentTypeCopy", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Add-MgSiteListContentTypeCopy", "Permissions": [], + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", + "Method": "POST", + "Command": "Add-MgSiteListContentTypeCopy", + "Permissions": [], "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Add-MgTeamChannelMember", - "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Add-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgTeamChannelMember", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" + }, + { + "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "Add-MgTeamChannelMember", + "Permissions": [], "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgTeamMember", "Uri": "/teams/{team-id}/members/add", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgTeamMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgTeamMember", "Uri": "/teams/{team-id}/members/add", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgTeamMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/add", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/add", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Add-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActionResultPart", + "Module": "Teams" }, { - "Command": "Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/insert", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Insert", "InsertExpanded", "InsertViaIdentity", "InsertViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeSort", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/apply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeSort", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/insert", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Insert", "InsertExpanded", "InsertViaIdentity", "InsertViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeSort", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/apply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeSort", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/insert", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Insert", "InsertExpanded", "InsertViaIdentity", "InsertViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeSort", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/apply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeSort", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/insert", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Insert", "InsertExpanded", "InsertViaIdentity", "InsertViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Actions" }, { - "Command": "Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeSort", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/apply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeSort", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Add-MgUserPendingAccessReviewInstanceDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Add-MgUserPendingAccessReviewInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Apply", "Apply1", "ApplyViaIdentity", "ApplyViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Add-MgWindowsUpdatesDeploymentAudienceMember", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Add-MgWindowsUpdatesDeploymentAudienceMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Add-MgWindowsUpdatesDeploymentAudienceMemberById", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Add-MgWindowsUpdatesDeploymentAudienceMemberById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Add-MgWindowsUpdatesUpdatableAssetMember", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Add-MgWindowsUpdatesUpdatableAssetMember", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Add-MgWindowsUpdatesUpdatableAssetMemberById", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Add-MgWindowsUpdatesUpdatableAssetMemberById", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Add1", "AddExpanded1", "AddViaIdentity1", "AddViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Approve-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Approve-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Approve", "ApproveExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Approve-MgUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/approve", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Approve-MgUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Approve", "ApproveExpanded", "ApproveViaIdentity", "ApproveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Approve-MgUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/approve", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Approve-MgUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Approve", "ApproveExpanded", "ApproveViaIdentity", "ApproveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Approve-MgUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/approve", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Approve-MgUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Approve", "ApproveExpanded", "ApproveViaIdentity", "ApproveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Approve-MgUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/approve", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Approve-MgUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Approve", "ApproveExpanded", "ApproveViaIdentity", "ApproveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgApplicationVerifiedPublisher", "Uri": "/applications/{application-id}/unsetVerifiedPublisher", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Clear-MgApplicationVerifiedPublisher", "Permissions": { "Name": "Application.ReadWrite.All", "Description": "Read and write applications", "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unset1", "UnsetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Clear-MgApplicationVerifiedPublisher", "Uri": "/applications/{application-id}/unsetVerifiedPublisher", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Clear-MgApplicationVerifiedPublisher", "Permissions": { "Name": "Application.ReadWrite.All", "Description": "Read and write applications", "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unset", "UnsetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Clear-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}/clearPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Clear-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clear1", "ClearExpanded1", "ClearViaIdentity1", "ClearViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Clear-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}/clearPresence", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Clear-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Clear-MgCommunicationPresenceUserPreferredPresence", "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Clear-MgCommunicationPresenceUserPreferredPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Clear-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Clear-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Clear-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementComanagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", @@ -1125,20 +1185,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", @@ -1153,35 +1213,35 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -1208,20 +1268,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -1248,20 +1308,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Wipe1", "WipeExpanded1", "WipeViaIdentity1", "WipeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Clear-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", @@ -1276,165 +1336,165 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Clear-MgUserAndBlockManagedApp", "Uri": "/users/{user-id}/wipeAndBlockManagedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserAndBlockManagedApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFill", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFill", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeFill", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightSharedResourceMicrosoftGraphWorkbookRangeFill", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFill", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFill", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeFill", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/clear", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserInsightUsedResourceMicrosoftGraphWorkbookRangeFill", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserManagedAppRegistrationByDeviceTag", "Uri": "/users/{user-id}/wipeManagedAppRegistrationByDeviceTag", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserManagedAppRegistrationByDeviceTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -1461,20 +1521,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Wipe1", "WipeExpanded1", "WipeViaIdentity1", "WipeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -1501,63 +1561,63 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserPresence", "Uri": "/users/{user-id}/presence/clearPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserPresence", "Uri": "/users/{user-id}/presence/clearPresence", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clear1", "ClearExpanded1", "ClearViaIdentity1", "ClearViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Clear-MgUserPresenceUserPreferredPresence", "Uri": "/users/{user-id}/presence/clearUserPreferredPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Clear-MgUserPresenceUserPreferredPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clear", "ClearViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Close-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases/{case-id}/close", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Close-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -1572,344 +1632,344 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Close", "CloseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Compare-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/compare(templateId='{templateId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Compare-MgDeviceManagementIntent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", "Variants": [ "Compare", "CompareViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", + "Module": "DeviceManagement.Functions" }, { - "Command": "Compare-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/compare(templateId='{templateId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Compare-MgDeviceManagementTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", "Variants": [ "Compare", "CompareViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", + "Module": "DeviceManagement.Functions" }, { - "Command": "Compare-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/compare(templateId='{templateId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Compare-MgDeviceManagementTemplateMigratableTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", "Variants": [ "Compare", "CompareViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", + "Module": "DeviceManagement.Functions" }, { - "Command": "Complete-MgDeviceManagementAndroidForWorkSettingSignup", "Uri": "/deviceManagement/androidForWorkSettings/completeSignup", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Complete-MgDeviceManagementAndroidForWorkSettingSignup", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Complete", "CompleteExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Complete-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Complete-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Complete", "CompleteExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Complete-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Complete-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Complete-MgDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Complete-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Complete-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Complete-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Complete-MgTeamChannelMigration", "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamChannelMigration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgTeamChannelMigration", "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamChannelMigration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Complete1", "CompleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgTeamMigration", "Uri": "/teams/{team-id}/completeMigration", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamMigration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgTeamMigration", "Uri": "/teams/{team-id}/completeMigration", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamMigration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Complete1", "CompleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgTeamPrimaryChannelMigration", "Uri": "/teams/{team-id}/primaryChannel/completeMigration", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamPrimaryChannelMigration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgTeamPrimaryChannelMigration", "Uri": "/teams/{team-id}/primaryChannel/completeMigration", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Complete-MgTeamPrimaryChannelMigration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Complete1", "CompleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Complete-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Complete-MgUserOutlookTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users.Actions" }, { - "Command": "Complete-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Complete-MgUserOutlookTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users.Actions" }, { - "Command": "Complete-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Complete-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Complete", "CompleteViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users.Actions" }, { - "Command": "Confirm-MgAdministrativeUnitMemberGroup", "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgAdministrativeUnitMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgAdministrativeUnitMemberObject", "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgAdministrativeUnitMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgApplicationMemberGroup", "Uri": "/applications/{application-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgApplicationMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgApplicationMemberGroup", "Uri": "/applications/{application-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgApplicationMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgApplicationMemberObject", "Uri": "/applications/{application-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgApplicationMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgApplicationMemberObject", "Uri": "/applications/{application-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgApplicationMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgContactMemberGroup", "Uri": "/contacts/{orgContact-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContactMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -1930,20 +1990,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContactMemberGroup", "Uri": "/contacts/{orgContact-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContactMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -1964,166 +2024,166 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContactMemberObject", "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContactMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContactMemberObject", "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContactMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContractMemberGroup", "Uri": "/contracts/{contract-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContractMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContractMemberGroup", "Uri": "/contracts/{contract-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContractMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContractMemberObject", "Uri": "/contracts/{contract-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContractMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgContractMemberObject", "Uri": "/contracts/{contract-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgContractMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDeviceManagementWindowEnrollmentAutoDiscovery", "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Confirm-MgDeviceManagementWindowEnrollmentAutoDiscovery", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Verify", "VerifyViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Confirm-MgDeviceManagementWindowEnrollmentAutoDiscovery", "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Confirm-MgDeviceManagementWindowEnrollmentAutoDiscovery", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Verify1", "VerifyViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Confirm-MgDeviceMemberGroup", "Uri": "/devices/{device-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDeviceMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDeviceMemberGroup", "Uri": "/devices/{device-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDeviceMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDeviceMemberObject", "Uri": "/devices/{device-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDeviceMemberObject", "Permissions": [ { "Name": "Device.Read.All", @@ -2156,20 +2216,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDeviceMemberObject", "Uri": "/devices/{device-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDeviceMemberObject", "Permissions": [ { "Name": "Device.Read.All", @@ -2202,20 +2262,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryObjectMemberGroup", "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Confirm-MgDirectoryObjectMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -2236,20 +2296,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Confirm-MgDirectoryObjectMemberGroup", "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Confirm-MgDirectoryObjectMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -2270,262 +2330,262 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Confirm-MgDirectoryObjectMemberObject", "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Confirm-MgDirectoryObjectMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Confirm-MgDirectoryObjectMemberObject", "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Confirm-MgDirectoryObjectMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Confirm-MgDirectoryRoleMemberGroup", "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleMemberGroup", "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleMemberObject", "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleMemberObject", "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectorySettingTemplateMemberGroup", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectorySettingTemplateMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDirectorySettingTemplateMemberObject", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDirectorySettingTemplateMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDomain", "Uri": "/domains/{domain-id}/verify", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain1", "Variants": [ "Verify", "VerifyViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDomain1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgDomain", "Uri": "/domains/{domain-id}/verify", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", "Variants": [ "Verify1", "VerifyViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgGroupGrantedPermission", "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupGrantedPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Check", "CheckViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Confirm-MgGroupGrantedPermission", "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupGrantedPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Check1", "CheckViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Confirm-MgGroupMemberGroup", "Uri": "/groups/{group-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -2570,20 +2630,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Confirm-MgGroupMemberGroup", "Uri": "/groups/{group-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -2628,20 +2688,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Confirm-MgGroupMemberObject", "Uri": "/groups/{group-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -2674,20 +2734,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Confirm-MgGroupMemberObject", "Uri": "/groups/{group-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Confirm-MgGroupMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -2720,106 +2780,106 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Confirm-MgInformationProtectionSignature", "Uri": "/informationProtection/verifySignature", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Confirm-MgInformationProtectionSignature", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Verify", "VerifyExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Confirm-MgOrganizationMemberGroup", "Uri": "/organization/{organization-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgOrganizationMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgOrganizationMemberGroup", "Uri": "/organization/{organization-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgOrganizationMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgOrganizationMemberObject", "Uri": "/organization/{organization-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgOrganizationMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgOrganizationMemberObject", "Uri": "/organization/{organization-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Confirm-MgOrganizationMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Confirm-MgRiskyUserCompromised", "Uri": "/riskyUsers/confirmCompromised", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Confirm-MgRiskyUserCompromised", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Confirm", "ConfirmExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Confirm-MgServicePrincipalMemberGroup", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgServicePrincipalMemberGroup", "Permissions": [ { "Name": "Application.Read.All", @@ -2852,20 +2912,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgServicePrincipalMemberGroup", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgServicePrincipalMemberGroup", "Permissions": [ { "Name": "Application.Read.All", @@ -2898,20 +2958,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgServicePrincipalMemberObject", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgServicePrincipalMemberObject", "Permissions": [ { "Name": "Application.Read.All", @@ -2944,20 +3004,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgServicePrincipalMemberObject", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Confirm-MgServicePrincipalMemberObject", "Permissions": [ { "Name": "Application.Read.All", @@ -2990,38 +3050,38 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Confirm-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/confirm", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Confirm-MgTeamScheduleTimeCard", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Confirm", "ConfirmViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Confirm-MgUserMemberGroup", "Uri": "/users/{user-id}/checkMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Confirm-MgUserMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -3060,20 +3120,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Confirm-MgUserMemberGroup", "Uri": "/users/{user-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Confirm-MgUserMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -3112,20 +3172,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Confirm-MgUserMemberObject", "Uri": "/users/{user-id}/checkMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Confirm-MgUserMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -3164,20 +3224,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Confirm-MgUserMemberObject", "Uri": "/users/{user-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Confirm-MgUserMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -3216,111 +3276,111 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Check1", "CheckExpanded1", "CheckViaIdentity1", "CheckViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Connect-MgDeviceManagementChromeOSOnboardingSetting", "Uri": "/deviceManagement/chromeOSOnboardingSettings/connect", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Connect-MgDeviceManagementChromeOSOnboardingSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Connect", "ConnectExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Copy-MgDeviceManagementReusablePolicySetting", "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/clone", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Copy-MgDeviceManagementReusablePolicySetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting", "Variants": [ "Clone", "CloneViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting", + "Module": "DeviceManagement.Actions" }, { - "Command": "Copy-MgDriveListContentTypeBaseToDefaultContentLocation", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgDriveListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgDriveListContentTypeBaseToDefaultContentLocation", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgDriveListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3341,20 +3401,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3375,20 +3435,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenotePageToSection", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -3409,20 +3469,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenotePageToSection", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -3443,20 +3503,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenoteSectionToNotebook", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3477,20 +3537,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenoteSectionToNotebook", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3511,20 +3571,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -3545,20 +3605,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -3579,110 +3639,110 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Groups" }, { - "Command": "Copy-MgShareListContentTypeBaseToDefaultContentLocation", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgShareListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgShareListContentTypeBaseToDefaultContentLocation", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgShareListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Copy-MgSiteContentTypeBaseToDefaultContentLocation", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteContentTypeBaseToDefaultContentLocation", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -3703,20 +3763,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -3737,80 +3797,80 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteListContentTypeBaseToDefaultContentLocation", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteListContentTypeBaseToDefaultContentLocation", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteListContentTypeBaseToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3831,20 +3891,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3865,20 +3925,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenotePageToSection", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -3899,20 +3959,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenotePageToSection", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -3933,20 +3993,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteSectionToNotebook", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -3967,20 +4027,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteSectionToNotebook", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -4001,20 +4061,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -4035,20 +4095,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -4069,20 +4129,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Sites" }, { - "Command": "Copy-MgTeam", "Uri": "/teams/{team-id}/clone", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Copy-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -4097,20 +4157,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clone", "CloneExpanded", "CloneViaIdentity", "CloneViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Copy-MgTeam", "Uri": "/teams/{team-id}/clone", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Copy-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -4125,170 +4185,170 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clone1", "CloneExpanded1", "CloneViaIdentity1", "CloneViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Copy-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/copy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/copy", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -4309,20 +4369,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -4343,20 +4403,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenotePageToSection", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -4377,20 +4437,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenotePageToSection", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenotePageToSection", "Permissions": [ { "Name": "Notes.Create", @@ -4411,20 +4471,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteSectionToNotebook", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -4445,20 +4505,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteSectionToNotebook", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteSectionToNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -4479,20 +4539,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteSectionToSectionGroup", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -4513,20 +4573,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Copy-MgUserOnenoteSectionToSectionGroup", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Copy-MgUserOnenoteSectionToSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -4547,323 +4607,323 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Copy1", "CopyExpanded1", "CopyViaIdentity1", "CopyViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Users.Actions" }, { - "Command": "Disable-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementComanagedDeviceLostMode", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementComanagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostMode", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Disable1", "DisableViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgDeviceManagementScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disable-MgDeviceManagementScriptDeviceRunStateManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disable-MgUserAuthenticationMethodSmSign", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/disableSmsSignIn", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Disable-MgUserAuthenticationMethodSmSign", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Disable-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Disable-MgUserManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Disable-MgUserManagedDeviceLostMode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Disable-MgUserManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disable1", "DisableViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Disable-MgUserManagedDeviceLostMode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Disable-MgUserManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Disable", "DisableViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Disconnect-MgDeviceManagementChromeOSOnboardingSetting", "Uri": "/deviceManagement/chromeOSOnboardingSettings/disconnect", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disconnect-MgDeviceManagementChromeOSOnboardingSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disconnect" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Disconnect", "DisconnectViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Disconnect1", "DisconnectViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementAndroidDeviceAdministratorEnrollment", "Uri": "/deviceManagement/enableAndroidDeviceAdministratorEnrollment", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementAndroidDeviceAdministratorEnrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -4878,199 +4938,199 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters/enable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementAssignmentFilter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementComanagedDeviceLostMode", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementComanagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementDeviceHealthScriptGlobalScript", "Uri": "/deviceManagement/deviceHealthScripts/enableGlobalScripts", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementDeviceHealthScriptGlobalScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostMode", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementLegacyPcManagement", "Uri": "/deviceManagement/enableLegacyPcManagement", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementLegacyPcManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementManagedDeviceLostMode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementScriptDeviceRunStateManagedDeviceLostMode", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementScriptDeviceRunStateManagedDeviceLostMode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgDeviceManagementUnlicensedAdminstrator", "Uri": "/deviceManagement/enableUnlicensedAdminstrators", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Enable-MgDeviceManagementUnlicensedAdminstrator", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Enable-MgUserAuthenticationMethodSmSign", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/enableSmsSignIn", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Enable-MgUserAuthenticationMethodSmSign", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Enable-MgUserManagedDeviceLostMode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Enable-MgUserManagedDeviceLostMode", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Export-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/export", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Export-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -5085,20 +5145,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Export-MgDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/exportMobileConfig", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Export-MgDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -5113,33 +5173,33 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Export", "ExportViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Export-MgUserDeviceAndAppManagementData", "Uri": "/users/{user-id}/exportDeviceAndAppManagementData", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Export-MgUserDeviceAndAppManagementData", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Export", "Export1", "ExportViaIdentity", "ExportViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Export-MgUserPersonalData", "Uri": "/users/{user-id}/exportPersonalData", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Export-MgUserPersonalData", "Permissions": [ { "Name": "User.Export.All", @@ -5154,20 +5214,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Export-MgUserPersonalData", "Uri": "/users/{user-id}/exportPersonalData", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Export-MgUserPersonalData", "Permissions": [ { "Name": "User.Export.All", @@ -5182,216 +5242,216 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Export1", "ExportExpanded1", "ExportViaIdentity1", "ExportViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Discover", "DiscoverViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Discover", "DiscoverViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Find-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Locate1", "LocateViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Find-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Discover", "DiscoverViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Discover", "DiscoverViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Find-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Find-MgUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Locate1", "LocateViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Find-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Find-MgUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Locate", "LocateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Find-MgUserMeetingTime", "Uri": "/users/{user-id}/findMeetingTimes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Find-MgUserMeetingTime", "Permissions": [ { "Name": "Calendars.Read.Shared", @@ -5406,20 +5466,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult", "Variants": [ "Find", "FindExpanded", "FindViaIdentity", "FindViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult", + "Module": "Users.Actions" }, { - "Command": "Find-MgUserMeetingTime", "Uri": "/users/{user-id}/findMeetingTimes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Find-MgUserMeetingTime", "Permissions": [ { "Name": "Calendars.Read.Shared", @@ -5434,20 +5494,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult1", "Variants": [ "Find1", "FindExpanded1", "FindViaIdentity1", "FindViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult1", + "Module": "Users.Actions" }, { - "Command": "Find-MgUserRoom", "Uri": "/users/{user-id}/findRooms", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Find-MgUserRoom", "Permissions": [ { "Name": "User.Read.All", @@ -5462,20 +5522,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAddress", "Variants": [ "Find", "Find1", "FindViaIdentity", "FindViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEmailAddress", + "Module": "Users.Functions" }, { - "Command": "Find-MgUserRoomList", "Uri": "/users/{user-id}/findRoomLists", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Find-MgUserRoomList", "Permissions": [ { "Name": "User.Read.All", @@ -5490,18 +5550,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAddress", "Variants": [ "Find", "FindViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmailAddress", + "Module": "Users.Functions" }, { - "Command": "Get-MgAccessReview", "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReview", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -5522,18 +5582,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReview", "Uri": "/accessReviews", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReview", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -5554,30 +5614,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/decisions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewDecision", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -5598,55 +5658,55 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewInstance", "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewInstance", "Uri": "/accessReviews/{accessReview-id}/instances", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewMyDecision", "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewMyDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewMyDecision", "Uri": "/accessReviews/{accessReview-id}/myDecisions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewMyDecision", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -5667,30 +5727,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewReviewer", "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAccessReviewReviewer", "Uri": "/accessReviews/{accessReview-id}/reviewers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAccessReviewReviewer", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -5711,17 +5771,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAdministrativeUnit", "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -5754,18 +5814,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnit", "Uri": "/administrativeUnits", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -5798,30 +5858,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitById", "Uri": "/administrativeUnits/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitDelta", "Uri": "/administrativeUnits/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitDelta", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -5854,42 +5914,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitExtension", "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitExtension", "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitMember", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -5922,17 +5982,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitMemberByRef", "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitMemberByRef", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -5965,47 +6025,47 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitMemberGroup", "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitMemberObject", "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitScopedRoleMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -6038,18 +6098,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitScopedRoleMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -6082,343 +6142,343 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAdministrativeUnitUserOwnedObject", "Uri": "/administrativeUnits/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgAdministrativeUnitUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreement", "Uri": "/agreements", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreement", "Uri": "/agreements", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFile", "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFile", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFile", "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFile", "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFile", "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFile", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFile", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "Get-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6451,17 +6511,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6494,80 +6554,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition1", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition1", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionBot", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6588,18 +6648,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionBot", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6620,18 +6680,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionColorIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionColorIcon", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6652,18 +6712,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppIcon", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6684,20 +6744,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionOutlineIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionOutlineIcon", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6718,18 +6778,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppIcon", + "Module": "Teams" }, { - "Command": "Get-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -6750,20 +6810,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplication", "Permissions": [ { "Name": "Application.Read.All", @@ -6790,18 +6850,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApplication", + "Module": "Applications" }, { - "Command": "Get-MgApplication", "Uri": "/applications", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplication", "Permissions": [ { "Name": "Application.Read.All", @@ -6828,17 +6888,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApplication", + "Module": "Applications" }, { - "Command": "Get-MgApplication", "Uri": "/applications", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplication", "Permissions": [ { "Name": "Application.Read.All", @@ -6865,17 +6925,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphApplication1", + "Module": "Applications" }, { - "Command": "Get-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplication", "Permissions": [ { "Name": "Application.Read.All", @@ -6902,146 +6962,146 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphApplication1", + "Module": "Applications" }, { - "Command": "Get-MgApplicationAppManagementPolicy", "Uri": "/applications/{application-id}/appManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationAppManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppManagementPolicy", + "Module": "Applications" }, { - "Command": "Get-MgApplicationAppManagementPolicyByRef", "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationAppManagementPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationById", "Uri": "/applications/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationById", "Uri": "/applications/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get2", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationConnectorGroup", "Uri": "/applications/{application-id}/connectorGroup", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "Get-MgApplicationConnectorGroupByRef", "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationConnectorGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationCreatedOnBehalfOf", "Uri": "/applications/{application-id}/createdOnBehalfOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationCreatedOnBehalfOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationCreatedOnBehalfOf", "Uri": "/applications/{application-id}/createdOnBehalfOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationCreatedOnBehalfOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationDelta", "Uri": "/applications/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationDelta", "Permissions": [ { "Name": "Application.Read.All", @@ -7068,17 +7128,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphApplication", + "Module": "Applications" }, { - "Command": "Get-MgApplicationDelta", "Uri": "/applications/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationDelta", "Permissions": [ { "Name": "Application.Read.All", @@ -7105,30 +7165,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication1", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphApplication1", + "Module": "Applications" }, { - "Command": "Get-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationExtensionProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "Get-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.Read.All", @@ -7149,17 +7209,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "Get-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.Read.All", @@ -7180,189 +7240,189 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "Get-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationExtensionProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "Get-MgApplicationFederatedIdentityCredential", "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "Get-MgApplicationFederatedIdentityCredential", "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", + "Module": "Applications" }, { - "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", + "Module": "Applications" }, { - "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyByRef", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyByRef", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationLogo", "Uri": "/applications/{application-id}/logo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationLogo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationLogo", "Uri": "/applications/{application-id}/logo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationLogo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationMemberGroup", "Uri": "/applications/{application-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationMemberGroup", "Uri": "/applications/{application-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationMemberObject", "Uri": "/applications/{application-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationMemberObject", "Uri": "/applications/{application-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationOwner", "Uri": "/applications/{application-id}/owners", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationOwner", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7389,17 +7449,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationOwner", "Uri": "/applications/{application-id}/owners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationOwner", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7426,17 +7486,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgApplicationOwnerByRef", "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7463,17 +7523,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationOwnerByRef", "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7500,241 +7560,241 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronization", "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronization", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationAccessToken", "Uri": "/applications/{application-id}/synchronization/acquireAccessToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationAccessToken", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Acquire", "AcquireExpanded", "AcquireViaIdentity", "AcquireViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationJobSchema", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationJobSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationSchema", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationTemplate", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationTemplate", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationTemplate", "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationTemplate", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationTemplateSchema", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationTemplateSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationSchema", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTemplate", "Uri": "/applicationTemplates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTemplate", "Uri": "/applicationTemplates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenIssuancePolicy", "Uri": "/applications/{application-id}/tokenIssuancePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenIssuancePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7755,17 +7815,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenIssuancePolicy", "Uri": "/applications/{application-id}/tokenIssuancePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenIssuancePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7786,17 +7846,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenIssuancePolicyByRef", "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenIssuancePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7817,17 +7877,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenIssuancePolicyByRef", "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenIssuancePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7848,17 +7908,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenLifetimePolicy", "Uri": "/applications/{application-id}/tokenLifetimePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenLifetimePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7879,17 +7939,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenLifetimePolicy", "Uri": "/applications/{application-id}/tokenLifetimePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenLifetimePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7910,17 +7970,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy", + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenLifetimePolicyByRef", "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7941,17 +8001,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationTokenLifetimePolicyByRef", "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgApplicationTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -7972,30 +8032,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgApplicationUserOwnedObject", "Uri": "/applications/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgApplicationUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgAuditLogDirectoryAudit", "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryAudit", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8010,18 +8070,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryAudit1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryAudit1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogDirectoryAudit", "Uri": "/auditLogs/directoryAudits", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryAudit", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8036,17 +8096,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryAudit1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryAudit1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogDirectoryAudit", "Uri": "/auditLogs/directoryAudits", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryAudit", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8061,17 +8121,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryAudit", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryAudit", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogDirectoryAudit", "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryAudit", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8086,56 +8146,56 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryAudit", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryAudit", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogDirectoryProvisioning", "Uri": "/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryProvisioning", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogDirectoryProvisioning", "Uri": "/auditLogs/directoryProvisioning", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogDirectoryProvisioning", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogProvisioning", "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogProvisioning", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogProvisioning", "Uri": "/auditLogs/provisioning", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogProvisioning", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8150,17 +8210,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogProvisioning", "Uri": "/auditLogs/provisioning", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogProvisioning", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8175,80 +8235,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogProvisioning", "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogProvisioning", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogRestrictedSignIn", "Uri": "/auditLogs/restrictedSignIns/{restrictedSignIn-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogRestrictedSignIn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedSignIn1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedSignIn1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogRestrictedSignIn", "Uri": "/auditLogs/restrictedSignIns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogRestrictedSignIn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedSignIn1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedSignIn1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogRestrictedSignIn", "Uri": "/auditLogs/restrictedSignIns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogRestrictedSignIn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRestrictedSignIn", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedSignIn", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogRestrictedSignIn", "Uri": "/auditLogs/restrictedSignIns/{restrictedSignIn-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogRestrictedSignIn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRestrictedSignIn", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedSignIn", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogSignIn", "Uri": "/auditLogs/signIns/{signIn-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogSignIn", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8263,18 +8323,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignIn1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSignIn1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogSignIn", "Uri": "/auditLogs/signIns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogSignIn", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8289,17 +8349,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignIn1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSignIn1", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogSignIn", "Uri": "/auditLogs/signIns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogSignIn", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8314,17 +8374,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSignIn", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSignIn", + "Module": "Reports" }, { - "Command": "Get-MgAuditLogSignIn", "Uri": "/auditLogs/signIns/{signIn-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgAuditLogSignIn", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -8339,18 +8399,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSignIn", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSignIn", + "Module": "Reports" }, { - "Command": "Get-MgBookingBusiness", "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusiness", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8377,18 +8437,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingBusiness", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusiness", "Uri": "/bookingBusinesses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusiness", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8415,17 +8475,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingBusiness", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8452,18 +8512,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8490,30 +8550,30 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessCalendarView", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessCalendarView", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8540,17 +8600,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessCustomer", "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessCustomer", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8577,18 +8637,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingCustomer", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessCustomer", "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessCustomer", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8615,17 +8675,42 @@ "IsAdmin": false } ], - "ApiVersion": "beta", + "Variants": [ + "List" + ], "OutputType": "IMicrosoftGraphBookingCustomer", + "Module": "Bookings" + }, + { + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomQuestion", + "Permissions": [], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphBookingCustomQuestion", + "Module": "Bookings" + }, + { + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomQuestion", + "Permissions": [], "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingCustomQuestion", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessService", "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessService", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8652,18 +8737,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingService", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessService", "Uri": "/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessService", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8690,17 +8775,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingService", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessStaffMember", "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessStaffMember", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8727,18 +8812,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingStaffMember", + "Module": "Bookings" }, { - "Command": "Get-MgBookingBusinessStaffMember", "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingBusinessStaffMember", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8765,17 +8850,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingStaffMember", + "Module": "Bookings" }, { - "Command": "Get-MgBookingCurrency", "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingCurrency", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8802,18 +8887,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBookingCurrency", + "Module": "Bookings" }, { - "Command": "Get-MgBookingCurrency", "Uri": "/bookingCurrencies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Bookings", + "Command": "Get-MgBookingCurrency", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -8840,30 +8925,30 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBookingCurrency", + "Module": "Bookings" }, { - "Command": "Get-MgBusinessFlowTemplate", "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgBusinessFlowTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate", + "Module": "Identity.Governance" }, { - "Command": "Get-MgBusinessFlowTemplate", "Uri": "/businessFlowTemplates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgBusinessFlowTemplate", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -8884,17 +8969,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate", + "Module": "Identity.Governance" }, { - "Command": "Get-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChat", "Permissions": [ { "Name": "Chat.Read", @@ -8915,18 +9000,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "Get-MgChat", "Uri": "/chats", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChat", "Permissions": [ { "Name": "Chat.Read", @@ -8947,17 +9032,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "Get-MgChat", "Uri": "/chats", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChat", "Permissions": [ { "Name": "Chat.Read", @@ -8978,17 +9063,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "Get-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChat", "Permissions": [ { "Name": "Chat.Read", @@ -9009,18 +9094,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -9041,18 +9126,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -9073,17 +9158,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -9104,17 +9189,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -9135,135 +9220,135 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppDefinition", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppDefinition", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition1", + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgChatLastMessagePreview", "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatLastMessagePreview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageInfo", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageInfo", + "Module": "Teams" }, { - "Command": "Get-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -9308,18 +9393,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgChatMember", "Uri": "/chats/{chat-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMember", "Permissions": [ { "Name": "Chat.Read", @@ -9352,17 +9437,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgChatMember", "Uri": "/chats/{chat-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMember", "Permissions": [ { "Name": "Chat.Read", @@ -9395,17 +9480,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -9450,18 +9535,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgChatMessage", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessage", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9494,19 +9579,19 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get2", "Get3", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessage", "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessage", "Permissions": [ { "Name": "Chat.Read", @@ -9521,17 +9606,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessage", "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessage", "Permissions": [ { "Name": "Chat.Read", @@ -9546,17 +9631,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatMessage", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessage", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9589,19 +9674,19 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get", "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageDelta", "Uri": "/chats/{chat-id}/messages/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageDelta", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9634,18 +9719,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageDelta", "Uri": "/chats/{chat-id}/messages/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageDelta", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9678,18 +9763,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9710,18 +9795,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9742,17 +9827,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9773,17 +9858,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -9804,94 +9889,94 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReplyDelta", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReplyDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgChatMessageReplyDelta", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatMessageReplyDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgChatOperation", "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatOperation", "Permissions": [ { "Name": "Chat.Read", @@ -9912,18 +9997,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "Get-MgChatOperation", "Uri": "/chats/{chat-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatOperation", "Permissions": [ { "Name": "Chat.Read", @@ -9944,30 +10029,30 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "Get-MgChatPermissionGrant", "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "Get-MgChatPermissionGrant", "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatPermissionGrant", "Permissions": [ { "Name": "ResourceSpecificPermissionGrant.ReadForChat", @@ -9994,17 +10079,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "Get-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -10025,18 +10110,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgChatTab", "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -10057,17 +10142,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgChatTab", "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -10088,17 +10173,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -10119,566 +10204,616 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgChatTabTeamApp", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTabTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgChatTabTeamApp", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTabTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgCommunicationCall", "Uri": "/communications/calls/{call-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCall1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCall1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCall", "Uri": "/communications/calls/{call-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCall", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCall", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphParticipant1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphParticipant1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphParticipant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphParticipant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecord", "Uri": "/communications/callRecords/{callRecord-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsCallRecord", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsCallRecord", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecord", "Uri": "/communications/callRecords/{callRecord-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsCallRecord", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsCallRecord", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Get2", "Get3", "GetExpanded1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAlternativeRecording", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAlternativeRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", "Variants": [ - "Get", "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ] + "Get2", + "GetViaIdentity1", + "GetViaIdentity2" + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "List1" + ], "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", + "Permissions": [], "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", "Variants": [ "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], + "Variants": [ "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ] + "Get2", + "GetViaIdentity1", + "GetViaIdentity2" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], + "Variants": [ + "List1", + "List2" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "List" + ], "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ - "List", - "List1" - ] + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRecording", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRegistration", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistration", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRegistrationRegistrant", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationOnlineMeetingRegistrationRegistrant", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationPresence", "Uri": "/communications/getPresencesByUserId", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationPresence", "Permissions": { "Name": "Presence.Read.All", "Description": "Read presence information of all users in your organization", "FullDescription": "Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence1", "Variants": [ "Get2", "Get3", "GetExpanded1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPresence1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationPresence", "Uri": "/communications/presences", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationPresence", "Permissions": [ { "Name": "Presence.Read", @@ -10693,17 +10828,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPresence1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationPresence", "Uri": "/communications/presences", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationPresence", "Permissions": [ { "Name": "Presence.Read", @@ -10718,73 +10853,73 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPresence", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCommunicationPresence", "Uri": "/communications/getPresencesByUserId", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Get-MgCommunicationPresence", "Permissions": { "Name": "Presence.Read.All", "Description": "Read presence information of all users in your organization", "FullDescription": "Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPresence", + "Module": "CloudCommunications" }, { - "Command": "Get-MgCompliance", "Uri": "/compliance", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgCompliance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", + "Module": "Compliance" }, { - "Command": "Get-MgCompliance", "Uri": "/compliance", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgCompliance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompliance", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphCompliance", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscovery", "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscovery", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10799,18 +10934,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCase", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10825,17 +10960,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCase", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10850,18 +10985,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCustodian", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10876,17 +11011,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCustodian", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10901,18 +11036,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10927,43 +11062,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSourceSite", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSourceSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10978,18 +11113,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11004,43 +11139,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11055,18 +11190,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseCustodianUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseCustodianUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11081,17 +11216,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHold", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHold", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11106,18 +11241,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHold", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHold", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11132,30 +11267,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11170,107 +11305,107 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSite", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11285,17 +11420,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11310,18 +11445,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11336,30 +11471,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseOperation", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11374,30 +11509,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl", "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/getDownloadUrl", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11412,18 +11547,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11438,17 +11573,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseReviewSetQuery", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseReviewSetQuery", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11463,18 +11598,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseReviewSetQuery", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseReviewSetQuery", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11489,17 +11624,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSetting", "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSetting", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11514,18 +11649,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollection", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollection", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11540,18 +11675,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollection", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollection", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11566,30 +11701,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11604,17 +11739,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11629,18 +11764,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11655,18 +11790,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11681,17 +11816,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11706,17 +11841,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11731,18 +11866,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11757,18 +11892,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11783,17 +11918,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11808,17 +11943,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11833,18 +11968,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11859,17 +11994,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTagChildTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTagChildTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11884,17 +12019,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTagChildTagByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTagChildTagByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -11909,43 +12044,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTagParent", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTagParent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Get-MgComplianceEdiscoveryCaseTagParentByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Get-MgComplianceEdiscoveryCaseTagParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Get-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContact", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -11972,18 +12107,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContact", "Uri": "/contacts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContact", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12010,17 +12145,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContact", "Uri": "/contacts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContact", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12047,17 +12182,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContact", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12084,44 +12219,44 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactById", "Uri": "/contacts/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactById", "Uri": "/contacts/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDelta", "Uri": "/contacts/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12148,17 +12283,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDelta", "Uri": "/contacts/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12185,17 +12320,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDirectReport", "Uri": "/contacts/{orgContact-id}/directReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDirectReport", "Permissions": [ { "Name": "Directory.Read.All", @@ -12216,17 +12351,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDirectReport", "Uri": "/contacts/{orgContact-id}/directReports", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDirectReport", "Permissions": [ { "Name": "Directory.Read.All", @@ -12247,17 +12382,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDirectReportByRef", "Uri": "/contacts/{orgContact-id}/directReports/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDirectReportByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12278,17 +12413,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactDirectReportByRef", "Uri": "/contacts/{orgContact-id}/directReports/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactDirectReportByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12309,17 +12444,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactManager", "Uri": "/contacts/{orgContact-id}/manager", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactManager", "Permissions": [ { "Name": "Directory.Read.All", @@ -12340,18 +12475,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactManager", "Uri": "/contacts/{orgContact-id}/manager", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactManager", "Permissions": [ { "Name": "Directory.Read.All", @@ -12372,18 +12507,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactManagerByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12404,18 +12539,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactManagerByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12436,18 +12571,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberGroup", "Uri": "/contacts/{orgContact-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -12468,20 +12603,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberGroup", "Uri": "/contacts/{orgContact-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -12502,20 +12637,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberObject", "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberObject", "Permissions": [ { "Name": "Directory.Read.All", @@ -12536,20 +12671,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberObject", "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberObject", "Permissions": [ { "Name": "Directory.Read.All", @@ -12570,20 +12705,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberOf", "Uri": "/contacts/{orgContact-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberOf", "Permissions": [ { "Name": "Directory.Read.All", @@ -12604,17 +12739,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberOf", "Uri": "/contacts/{orgContact-id}/memberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberOf", "Permissions": [ { "Name": "Directory.Read.All", @@ -12635,17 +12770,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberOfByRef", "Uri": "/contacts/{orgContact-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberOfByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12666,17 +12801,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactMemberOfByRef", "Uri": "/contacts/{orgContact-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactMemberOfByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12697,17 +12832,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveMemberOf", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveMemberOf", "Permissions": [ { "Name": "Directory.Read.All", @@ -12728,17 +12863,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveMemberOf", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveMemberOf", "Permissions": [ { "Name": "Directory.Read.All", @@ -12759,17 +12894,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveMemberOfByRef", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12790,17 +12925,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveMemberOfByRef", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -12821,54 +12956,54 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveReport", "Uri": "/contacts/{orgContact-id}/transitiveReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactTransitiveReportByRef", "Uri": "/contacts/{orgContact-id}/transitiveReports/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactTransitiveReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContactUserOwnedObject", "Uri": "/contacts/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContactUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContract", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12889,18 +13024,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContract", "Uri": "/contracts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContract", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12921,17 +13056,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContract", "Uri": "/contracts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContract", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12952,17 +13087,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContract", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -12983,117 +13118,117 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractById", "Uri": "/contracts/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractById", "Uri": "/contracts/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractMemberGroup", "Uri": "/contracts/{contract-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractMemberGroup", "Uri": "/contracts/{contract-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractMemberObject", "Uri": "/contracts/{contract-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractMemberObject", "Uri": "/contracts/{contract-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgContractUserOwnedObject", "Uri": "/contracts/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgContractUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgDataPolicyOperation", "Permissions": [ { "Name": "User.Export.All", @@ -13108,42 +13243,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgDataPolicyOperation", "Uri": "/dataPolicyOperations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgDataPolicyOperation", "Uri": "/dataPolicyOperations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgDataPolicyOperation", "Permissions": [ { "Name": "User.Export.All", @@ -13158,18 +13293,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgDevice", "Uri": "/devices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDevice", "Permissions": [ { "Name": "Device.Read.All", @@ -13202,17 +13337,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDevice1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDevice", "Uri": "/devices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDevice", "Permissions": [ { "Name": "Device.Read.All", @@ -13245,17 +13380,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceAppMgt", "Uri": "/deviceAppManagement", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgt", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13282,17 +13417,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagement", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAppManagement", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgt", "Uri": "/deviceAppManagement", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgt", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13319,17 +13454,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAppManagement1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAppManagement1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13344,18 +13479,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13370,17 +13505,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13395,17 +13530,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13420,18 +13555,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13446,18 +13581,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13472,17 +13607,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13497,17 +13632,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13522,18 +13657,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13548,18 +13683,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13574,18 +13709,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13600,18 +13735,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13626,17 +13761,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13651,17 +13786,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13676,18 +13811,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13702,18 +13837,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13728,17 +13863,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13753,17 +13888,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13778,18 +13913,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13804,18 +13939,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13830,18 +13965,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13856,18 +13991,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13882,42 +14017,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13932,18 +14067,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13958,17 +14093,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -13983,18 +14118,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14009,17 +14144,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14034,18 +14169,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14060,17 +14195,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14085,18 +14220,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14111,17 +14246,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14136,18 +14271,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14162,17 +14297,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14187,17 +14322,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14212,18 +14347,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14238,18 +14373,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14264,17 +14399,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14289,17 +14424,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14314,18 +14449,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14340,18 +14475,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14366,18 +14501,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14392,18 +14527,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14418,17 +14553,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14443,17 +14578,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14468,18 +14603,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14494,18 +14629,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14520,17 +14655,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14545,17 +14680,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14570,18 +14705,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14596,18 +14731,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14622,17 +14757,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14647,17 +14782,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14672,18 +14807,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14698,18 +14833,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14724,17 +14859,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14749,17 +14884,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14774,18 +14909,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14800,18 +14935,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14826,17 +14961,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14851,17 +14986,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14876,18 +15011,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationUserId", "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationUserId", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14902,17 +15037,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppRegistrationUserId", "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppRegistrationUserId", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14927,17 +15062,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14952,18 +15087,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -14978,17 +15113,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15003,17 +15138,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedAppStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15028,18 +15163,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBook", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15054,18 +15189,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBook", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15080,17 +15215,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBook", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15105,17 +15240,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBook", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15130,18 +15265,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15156,18 +15291,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15182,17 +15317,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15207,17 +15342,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15232,18 +15367,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookCategory", "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15258,18 +15393,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookCategory", "Uri": "/deviceAppManagement/managedEBookCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15284,18 +15419,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookCategoryByRef", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/categories/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookCategoryByRef", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15310,17 +15445,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15335,18 +15470,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15361,17 +15496,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15386,17 +15521,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15411,18 +15546,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15437,18 +15572,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEBookInstallSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEBookInstallSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15463,18 +15598,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEBookInstallSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEBookInstallSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15489,18 +15624,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15515,17 +15650,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15540,17 +15675,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15565,18 +15700,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15591,18 +15726,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15617,17 +15752,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15642,17 +15777,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15667,18 +15802,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15693,18 +15828,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15719,17 +15854,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15744,17 +15879,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15769,18 +15904,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15795,18 +15930,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15821,17 +15956,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15846,17 +15981,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15871,18 +16006,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15897,18 +16032,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15923,17 +16058,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15948,17 +16083,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15973,18 +16108,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -15999,18 +16134,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16025,18 +16160,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16051,18 +16186,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16077,18 +16212,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategoryByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategoryByRef", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16103,17 +16238,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCategoryByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCategoryByRef", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16128,17 +16263,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16153,18 +16288,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16179,17 +16314,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16204,17 +16339,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16229,18 +16364,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16255,18 +16390,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16281,17 +16416,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16306,17 +16441,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16331,18 +16466,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16357,18 +16492,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16383,17 +16518,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16408,17 +16543,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16433,18 +16568,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16459,18 +16594,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16485,18 +16620,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16511,18 +16646,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16537,17 +16672,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16562,17 +16697,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16587,18 +16722,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16613,18 +16748,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16639,31 +16774,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppCount", "Uri": "/deviceAppManagement/mobileApps/getMobileAppCount(status='{status}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16678,18 +16813,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16704,17 +16839,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16729,18 +16864,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16755,31 +16890,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesAppRelatedAppState", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppDeviceStatusesAppRelatedAppState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationshipState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationshipState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppInstallSummary", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/installSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppInstallSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16794,31 +16929,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppRelatedAppState", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppRelatedAppState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationshipState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationshipState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppRelationship", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16833,18 +16968,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationship", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppRelationship", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16859,30 +16994,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationship", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppTopMobileApp", "Uri": "/deviceAppManagement/mobileApps/getTopMobileApps(status='{status}',count={count})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppTopMobileApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16897,18 +17032,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAppInstallStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16923,17 +17058,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAppInstallStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16948,18 +17083,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -16974,31 +17109,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesAppRelatedAppState", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesAppRelatedAppState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationshipState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationshipState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17013,18 +17148,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17039,56 +17174,56 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppRelatedAppState", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppRelatedAppState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationshipState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationshipState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySet", "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySet", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17103,20 +17238,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPolicySet", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySet", "Uri": "/deviceAppManagement/policySets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySet", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17131,17 +17266,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPolicySet", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySetAssignment", "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySetAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17156,18 +17291,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySetAssignment", "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySetAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17182,17 +17317,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySetItem", "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySetItem", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17207,18 +17342,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtPolicySetItem", "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtPolicySetItem", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -17233,17 +17368,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtSideLoadingKey", "Uri": "/deviceAppManagement/sideLoadingKeys/{sideLoadingKey-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtSideLoadingKey", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17258,18 +17393,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSideLoadingKey", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSideLoadingKey", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtSideLoadingKey", "Uri": "/deviceAppManagement/sideLoadingKeys", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtSideLoadingKey", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17284,17 +17419,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSideLoadingKey", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSideLoadingKey", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtSymantecCodeSigningCertificate", "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtSymantecCodeSigningCertificate", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17309,17 +17444,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17334,18 +17469,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17360,17 +17495,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17385,17 +17520,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17410,18 +17545,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17436,18 +17571,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17462,17 +17597,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17487,17 +17622,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17512,18 +17647,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17538,18 +17673,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17564,17 +17699,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17589,17 +17724,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17614,18 +17749,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17640,18 +17775,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17666,18 +17801,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTask", "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTask", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17692,18 +17827,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAppManagementTask", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtTask", "Uri": "/deviceAppManagement/deviceAppManagementTasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtTask", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17718,17 +17853,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAppManagementTask", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtVppToken", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17743,18 +17878,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphVppToken", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtVppToken", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17769,17 +17904,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphVppToken", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtVppToken", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17794,17 +17929,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphVppToken1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtVppToken", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -17819,31 +17954,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphVppToken1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtVppTokenLicense", "Uri": "/deviceAppManagement/vppTokens/getLicensesForApp(bundleId='{bundleId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtVppTokenLicense", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppTokenLicenseSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphVppTokenLicenseSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17858,18 +17993,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17884,17 +18019,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17909,18 +18044,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17935,17 +18070,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17960,18 +18095,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -17986,18 +18121,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18012,17 +18147,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18037,18 +18172,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18063,17 +18198,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18088,18 +18223,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18114,17 +18249,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18139,17 +18274,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18164,18 +18299,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18190,18 +18325,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18216,17 +18351,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowManagementApp", "Uri": "/deviceAppManagement/windowsManagementApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowManagementApp", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -18241,17 +18376,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagementApp", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphWindowsManagementApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceAppMgtWindowManagementAppByRef", "Uri": "/deviceAppManagement/windowsManagementApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgDeviceAppMgtWindowManagementAppByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -18266,32 +18401,32 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgDeviceById", "Uri": "/devices/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "Get3", "GetExpanded", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceById", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceById", "Permissions": [ { "Name": "Device.Read.All", @@ -18324,95 +18459,95 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Get1", "Get2", "GetExpanded1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceCommand", "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceCommand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCommand", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceCommand", "Uri": "/devices/{device-id}/commands", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceCommand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCommand", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceManagement", "Uri": "/deviceManagement", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18475,17 +18610,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagement", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagement", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagement", "Uri": "/deviceManagement", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -18548,17 +18683,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagement1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagement1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18573,17 +18708,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18598,18 +18733,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18624,17 +18759,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroid", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAndroid", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18649,18 +18784,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAndroid", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAndroid", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18675,17 +18810,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18700,18 +18835,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18726,17 +18861,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18751,18 +18886,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18777,17 +18912,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroidForWorkSetting", "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidForWorkSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18802,17 +18937,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkSettings", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkSettings", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18827,17 +18962,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18852,18 +18987,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18878,17 +19013,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18921,17 +19056,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -18964,17 +19099,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -18989,18 +19124,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -19015,17 +19150,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -19040,18 +19175,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -19066,17 +19201,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAssignedRoleDetail", "Uri": "/deviceManagement/getAssignedRoleDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAssignedRoleDetail", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -19091,17 +19226,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAssignmentFilter", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19116,18 +19251,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementAssignmentFilter", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19142,30 +19277,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementAssignmentFilterPlatformSupportedProperty", "Uri": "/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform={platform})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAssignmentFilterPlatformSupportedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAssignmentFilterState", "Uri": "/deviceManagement/assignmentFilters/getState", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAssignmentFilterState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19180,17 +19315,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAssignmentFilterStatusDetail", "Uri": "/deviceManagement/getAssignmentFiltersStatusDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementAssignmentFilterStatusDetail", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19205,18 +19340,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementAssignmentFilterSupportedProperty", "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAssignmentFilterSupportedProperty", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19231,18 +19366,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAuditEvent", "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementAuditEvent", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -19257,18 +19392,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAuditEvent", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementAuditEvent", "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementAuditEvent", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -19283,30 +19418,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAuditEvent", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementAuditEventAuditActivityType", "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAuditEventAuditActivityType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAuditEventAuditCategory", "Uri": "/deviceManagement/auditEvents/getAuditCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementAuditEventAuditCategory", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -19321,17 +19456,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementAutopilotEvent", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAutopilotEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19346,18 +19481,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAutopilotEvent", "Uri": "/deviceManagement/autopilotEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAutopilotEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19372,17 +19507,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19397,18 +19532,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19423,17 +19558,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementCartToClassAssociation", "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementCartToClassAssociation", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19448,18 +19583,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCartToClassAssociation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementCartToClassAssociation", "Uri": "/deviceManagement/cartToClassAssociations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementCartToClassAssociation", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19474,17 +19609,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCartToClassAssociation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementCategory", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19499,18 +19634,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementCategory", "Uri": "/deviceManagement/categories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19525,17 +19660,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementCategorySettingDefinition", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCategorySettingDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19550,18 +19685,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementCategorySettingDefinition", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCategorySettingDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -19576,47 +19711,47 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementCertificateConnectorDetailHealthMetric", "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementCertificateConnectorDetailHealthMetric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyLongValuePair", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphKeyLongValuePair", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries", "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19631,18 +19766,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19657,142 +19792,142 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceCategory", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementComanagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceDetectedApp", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceDetectedApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceDetectedAppByRef", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceFileVaultKey", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementComanagedDeviceFileVaultKey", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19807,131 +19942,131 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementComanagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceSummary", "Uri": "/deviceManagement/getComanagedDevicesSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementComanagedDeviceSummary", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -19946,79 +20081,79 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagedDevicesSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphComanagedDevicesSummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceUser", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceUserByRef", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsProtectionState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementComanagementEligibleDevice", "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComanagementEligibleDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -20033,18 +20168,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphComanagementEligibleDevice", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementComanagementEligibleDevice", "Uri": "/deviceManagement/comanagementEligibleDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComanagementEligibleDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -20059,17 +20194,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphComanagementEligibleDevice", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementComanagementEligibleDeviceSummary", "Uri": "/deviceManagement/getComanagementEligibleDevicesSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementComanagementEligibleDeviceSummary", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -20084,17 +20219,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20109,18 +20244,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20135,17 +20270,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20160,17 +20295,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20185,18 +20320,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementCondition", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCondition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20211,18 +20346,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementCondition", "Uri": "/deviceManagement/managementConditions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementCondition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20237,17 +20372,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementConditionalAccessSetting", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20262,17 +20397,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementConditionalAccessSetting", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20287,30 +20422,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementConditionForPlatform", "Uri": "/deviceManagement/managementConditions/getManagementConditionsForPlatform(platform={platform})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementConditionForPlatform", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementConditionManagementConditionStatementByRef", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementConditionManagementConditionStatementByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20325,17 +20460,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionStatement", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementConditionStatement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20350,18 +20485,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementConditionStatement", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagementConditionStatement", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionStatement", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementConditionStatement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20376,55 +20511,55 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementConditionStatement", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagementConditionStatement", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionStatementManagementCondition", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementConditionStatementManagementCondition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionStatementManagementConditionByRef", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementConditionStatementManagementConditionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementConditionStatementManagementConditionForPlatform", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions/getManagementConditionsForPlatform(platform={platform})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementConditionStatementManagementConditionForPlatform", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementConditionStatementManagementConditionStatementExpressionString", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/getManagementConditionStatementExpressionString", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementConditionStatementManagementConditionStatementExpressionString", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20439,81 +20574,81 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementConditionStatementManagementConditionStatementForPlatform", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/getManagementConditionStatementsForPlatform(platform={platform})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementConditionStatementManagementConditionStatementForPlatform", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementConditionStatement", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagementConditionStatement", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementConfigManagerCollectionPolicySummary", "Uri": "/deviceManagement/configManagerCollections/getPolicySummary(policyId='{policyId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementConfigManagerCollectionPolicySummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConfigManagerPolicySummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConfigManagerPolicySummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDataSharingConsent", "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDataSharingConsent", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDataSharingConsent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDataSharingConsent", "Uri": "/deviceManagement/dataSharingConsents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDataSharingConsent", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDataSharingConsent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSetting", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20528,18 +20663,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDepOnboardingSetting", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSetting", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20554,17 +20689,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDepOnboardingSetting", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20579,18 +20714,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20605,18 +20740,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20631,18 +20766,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20657,18 +20792,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingEncryptionPublicKey", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDepOnboardingSettingEncryptionPublicKey", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20683,18 +20818,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20709,18 +20844,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20735,30 +20870,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingExpiringVppTokenCount", "Uri": "/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDepOnboardingSettingExpiringVppTokenCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20773,18 +20908,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -20799,42 +20934,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDerivedCredentials", "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDerivedCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDerivedCredentials", "Uri": "/deviceManagement/derivedCredentials", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDerivedCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20873,18 +21008,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20923,17 +21058,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -20972,17 +21107,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21021,18 +21156,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21071,17 +21206,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21120,17 +21255,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceByRef", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21169,17 +21304,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceByRef", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21218,17 +21353,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCategory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -21243,18 +21378,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCategory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -21269,17 +21404,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCategory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -21294,17 +21429,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCategory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -21319,18 +21454,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21345,18 +21480,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21371,17 +21506,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21396,17 +21531,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21421,18 +21556,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21447,18 +21582,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21473,17 +21608,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21498,17 +21633,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21523,30 +21658,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire", "Uri": "/deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21561,18 +21696,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21587,17 +21722,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21612,17 +21747,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21637,18 +21772,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21663,17 +21798,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21688,17 +21823,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21713,18 +21848,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21739,17 +21874,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21764,17 +21899,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21789,18 +21924,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21815,18 +21950,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21841,18 +21976,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21867,18 +22002,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21893,17 +22028,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21918,17 +22053,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21943,18 +22078,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21969,18 +22104,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -21995,17 +22130,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22020,17 +22155,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22045,18 +22180,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22071,18 +22206,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22097,17 +22232,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22122,17 +22257,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22147,18 +22282,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22173,18 +22308,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22199,17 +22334,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22224,17 +22359,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22249,18 +22384,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22275,18 +22410,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22301,17 +22436,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22326,17 +22461,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22351,18 +22486,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22377,18 +22512,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22403,31 +22538,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -22442,31 +22577,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceComplianceScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22481,18 +22616,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22507,17 +22642,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22532,17 +22667,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22557,18 +22692,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22583,18 +22718,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22609,17 +22744,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22634,17 +22769,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22659,18 +22794,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationConflictSummary", "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationConflictSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22685,18 +22820,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationConflictSummary", "Uri": "/deviceManagement/deviceConfigurationConflictSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationConflictSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22711,17 +22846,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22736,18 +22871,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22762,17 +22897,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22787,17 +22922,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22812,18 +22947,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22838,17 +22973,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22863,17 +22998,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22888,18 +23023,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22914,17 +23049,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22939,17 +23074,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22964,18 +23099,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -22990,18 +23125,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23016,18 +23151,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23042,18 +23177,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23068,17 +23203,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23093,18 +23228,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23119,31 +23254,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationOmaSettingPlainTextValue", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationOmaSettingPlainTextValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationIoAvailableUpdateVersion", "Uri": "/deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceConfigurationIoAvailableUpdateVersion", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23158,17 +23293,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23183,18 +23318,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23209,43 +23344,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23260,18 +23395,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedAppsViolation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23286,30 +23421,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedAppsViolation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationTargetedUserAndDevice", "Uri": "/deviceManagement/deviceConfigurations/getTargetedUsersAndDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementDeviceConfigurationTargetedUserAndDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStateSummary", "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23324,17 +23459,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23349,18 +23484,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23375,17 +23510,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23400,17 +23535,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23425,18 +23560,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23451,18 +23586,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23477,96 +23612,96 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceCustomAttributeShellScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23581,18 +23716,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23607,17 +23742,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23632,17 +23767,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23657,18 +23792,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23683,18 +23818,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23709,17 +23844,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23734,17 +23869,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -23759,18 +23894,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23785,18 +23920,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23811,17 +23946,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptAssignment", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23836,18 +23971,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptAssignment", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23862,17 +23997,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23887,18 +24022,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -23913,17 +24048,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -23938,18 +24073,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -23964,31 +24099,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24003,31 +24138,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getGlobalScriptHighestAvailableVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24042,18 +24177,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptRemediationHistory", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getRemediationHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptRemediationHistory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24068,18 +24203,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptRemediationSummary", "Uri": "/deviceManagement/deviceHealthScripts/getRemediationSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceHealthScriptRemediationSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24094,17 +24229,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceHealthScriptRunSummary", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceHealthScriptRunSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24119,18 +24254,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScript", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24145,18 +24280,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceShellScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScript", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24171,17 +24306,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceShellScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24196,18 +24331,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24222,17 +24357,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24247,18 +24382,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24273,82 +24408,82 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptGroupAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptGroupAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24363,18 +24498,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptGroupAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptGroupAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24389,17 +24524,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptRunSummary", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptRunSummary", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24414,18 +24549,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24440,18 +24575,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24466,18 +24601,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -24492,81 +24627,81 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementDomainJoinConnector", "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDomainJoinConnector", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24581,18 +24716,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementDomainJoinConnector", "Uri": "/deviceManagement/domainJoinConnectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementDomainJoinConnector", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24607,17 +24742,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementEffectivePermission", "Uri": "/deviceManagement/getEffectivePermissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementEffectivePermission", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -24632,32 +24767,32 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementEffectivePermission", "Uri": "/deviceManagement/getEffectivePermissions(scope='{scope}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementEffectivePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRolePermission", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRolePermission", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24672,18 +24807,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24698,17 +24833,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24723,18 +24858,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24749,17 +24884,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24774,18 +24909,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24800,17 +24935,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -24825,18 +24960,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -24851,17 +24986,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -24876,17 +25011,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -24901,18 +25036,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeOnPremisPolicy", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeOnPremisPolicy", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -24927,45 +25062,45 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", "Variants": [ "Get", "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeOnPremisPolicy", "Uri": "/deviceManagement/exchangeOnPremisesPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeOnPremisPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", "Variants": [ "Get", "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategory", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -24980,18 +25115,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategory", "Uri": "/deviceManagement/groupPolicyCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25006,117 +25141,117 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryChild", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryChild", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryChildByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryChildByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinition", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionFile", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryParent", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryParent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyCategoryParentByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyCategoryParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25131,18 +25266,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25157,17 +25292,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationAssignment", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25182,18 +25317,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationAssignment", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25208,17 +25343,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25233,18 +25368,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25259,17 +25394,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25284,18 +25419,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25310,18 +25445,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25336,18 +25471,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25362,17 +25497,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25387,18 +25522,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25413,56 +25548,56 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionCategory", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFile", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25477,133 +25612,133 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFile", "Uri": "/deviceManagement/groupPolicyDefinitionFiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFileDefinition", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFileDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFileDefinitionByRef", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionFileDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentation", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentation", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentationDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentationDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReport", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReport", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25618,18 +25753,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReport", "Uri": "/deviceManagement/groupPolicyMigrationReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReport", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25644,17 +25779,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25669,18 +25804,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25695,17 +25830,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25720,18 +25855,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25746,17 +25881,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyObjectFile", "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyObjectFile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25771,18 +25906,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyObjectFile", "Uri": "/deviceManagement/groupPolicyObjectFiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyObjectFile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25797,17 +25932,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25822,18 +25957,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -25848,42 +25983,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementImportedDeviceIdentity", "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -25898,18 +26033,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementImportedDeviceIdentity", "Uri": "/deviceManagement/importedDeviceIdentities", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -25924,17 +26059,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -25949,18 +26084,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -25975,17 +26110,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -26000,17 +26135,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -26025,18 +26160,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntent", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26051,18 +26186,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntent", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26077,17 +26212,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentAssignment", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26102,18 +26237,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentAssignment", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26128,17 +26263,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentCategory", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26153,18 +26288,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentCategory", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26179,17 +26314,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentCategorySetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentCategorySetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26204,18 +26339,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentCategorySetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentCategorySetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26230,17 +26365,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentDeviceSettingStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26255,18 +26390,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentDeviceSettingStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentDeviceSettingStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26281,17 +26416,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentDeviceState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentDeviceState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26306,18 +26441,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentDeviceState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentDeviceState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26332,17 +26467,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentDeviceStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentDeviceStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26357,18 +26492,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26383,18 +26518,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26409,17 +26544,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentUserState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentUserState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26434,18 +26569,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentUserState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentUserState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26460,17 +26595,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntentUserStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementIntentUserStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26485,18 +26620,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIntuneBrandingProfile", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -26511,18 +26646,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIntuneBrandingProfile", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -26537,17 +26672,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfile", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIntuneBrandingProfileAssignment", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIntuneBrandingProfileAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -26562,18 +26697,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIntuneBrandingProfileAssignment", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIntuneBrandingProfileAssignment", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -26588,17 +26723,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26613,18 +26748,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26639,17 +26774,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26664,17 +26799,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementIoUpdateStatuses", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26689,18 +26824,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26715,18 +26850,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26741,17 +26876,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26766,18 +26901,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26792,17 +26927,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26817,18 +26952,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26843,17 +26978,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26892,18 +27027,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26942,17 +27077,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -26991,17 +27126,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27040,211 +27175,211 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceDetectedApp", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceDetectedApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceDetectedAppByRef", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceEncryptionState", "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceEncryptionState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27259,18 +27394,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceEncryptionState", "Uri": "/deviceManagement/managedDeviceEncryptionStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceEncryptionState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27285,17 +27420,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceFileVaultKey", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementManagedDeviceFileVaultKey", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -27310,81 +27445,81 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementManagedDeviceOverview", "Uri": "/deviceManagement/managedDeviceOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27423,17 +27558,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceOverview1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceOverview1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceOverview", "Uri": "/deviceManagement/managedDeviceOverview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceOverview", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27472,17 +27607,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceOverview", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27521,17 +27656,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27570,129 +27705,129 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceUser", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceUserByRef", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsProtectionState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27713,18 +27848,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27745,17 +27880,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27776,18 +27911,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27808,17 +27943,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27839,18 +27974,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27871,17 +28006,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSite", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSite", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27902,18 +28037,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSite", "Uri": "/deviceManagement/microsoftTunnelSites", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSite", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27934,17 +28069,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27965,18 +28100,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -27997,18 +28132,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -28029,17 +28164,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -28060,20 +28195,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyLongValuePair", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphKeyLongValuePair", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -28094,45 +28229,45 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -28147,18 +28282,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -28173,17 +28308,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28198,18 +28333,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28224,17 +28359,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28249,17 +28384,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28274,18 +28409,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementNdeConnector", "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementNdeConnector", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -28300,18 +28435,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNdesConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementNdeConnector", "Uri": "/deviceManagement/ndesConnectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementNdeConnector", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -28326,17 +28461,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNdesConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28351,18 +28486,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28377,17 +28512,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28402,17 +28537,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplate", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28427,18 +28562,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28453,18 +28588,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28479,17 +28614,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28504,17 +28639,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28529,18 +28664,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28555,18 +28690,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28581,17 +28716,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28606,17 +28741,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28631,18 +28766,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRemoteActionAudit", "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementRemoteActionAudit", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -28657,18 +28792,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRemoteActionAudit", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementRemoteActionAudit", "Uri": "/deviceManagement/remoteActionAudits", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementRemoteActionAudit", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -28683,17 +28818,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRemoteActionAudit", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28708,18 +28843,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28734,17 +28869,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28759,17 +28894,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRemoteAssistancePartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -28784,18 +28919,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28834,17 +28969,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementReports1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementReports1", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28883,69 +29018,69 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementReports", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementReports", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportActiveMalwareReport", "Uri": "/deviceManagement/reports/getActiveMalwareReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportActiveMalwareReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportActiveMalwareSummaryReport", "Uri": "/deviceManagement/reports/getActiveMalwareSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportActiveMalwareSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportAppInstallSummaryReport", "Uri": "/deviceManagement/reports/getAppsInstallSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportAppInstallSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportAppStatusOverviewReport", "Uri": "/deviceManagement/reports/getAppStatusOverviewReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportAppStatusOverviewReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCachedReport", "Uri": "/deviceManagement/reports/getCachedReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCachedReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28984,18 +29119,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCachedReport", "Uri": "/deviceManagement/reports/getCachedReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCachedReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29034,18 +29169,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCachedReportConfiguration", "Uri": "/deviceManagement/reports/cachedReportConfigurations/{deviceManagementCachedReportConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReportCachedReportConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29084,18 +29219,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportCachedReportConfiguration", "Uri": "/deviceManagement/reports/cachedReportConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReportCachedReportConfiguration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29134,43 +29269,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyDeviceReport", "Uri": "/deviceManagement/reports/getCompliancePolicyDevicesReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyDeviceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyDeviceSummaryReport", "Uri": "/deviceManagement/reports/getCompliancePolicyDeviceSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyDeviceSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29209,18 +29344,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29259,18 +29394,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29309,18 +29444,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29359,31 +29494,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportCompliancePolicyReport", "Uri": "/deviceManagement/reports/getCompliancePoliciesReportForDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportCompliancePolicyReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29422,18 +29557,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29472,57 +29607,107 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigManagerDevicePolicyStatusReport", "Uri": "/deviceManagement/reports/getConfigManagerDevicePolicyStatusReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigManagerDevicePolicyStatusReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyDeviceReport", "Uri": "/deviceManagement/reports/getConfigurationPolicyDevicesReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyDeviceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyDeviceSummaryReport", "Uri": "/deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyDeviceSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "ApiVersion": "beta", + "Method": "POST", "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read devices Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", + "IsAdmin": true + } + ], + "Variants": [ + "Get", + "GetExpanded" + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29561,18 +29746,68 @@ "IsAdmin": true } ], - "ApiVersion": "beta", + "Variants": [ + "Get1", + "GetExpanded1" + ], "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read devices Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", + "IsAdmin": true + } + ], "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29611,157 +29846,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] - }, - { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read devices Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": null, - "Variants": [ - "Get", - "GetExpanded" - ] + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read devices Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "IsAdmin": true - } - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "Get1", - "GetExpanded1" - ] - }, - { - "Command": "Get-MgDeviceManagementReportConfigurationPolicyReport", "Uri": "/deviceManagement/reports/getConfigurationPoliciesReportForDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport", "Uri": "/deviceManagement/reports/getConfigurationPolicySettingsDeviceSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationSettingDetailReport", "Uri": "/deviceManagement/reports/getConfigurationSettingDetailsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationSettingDetailReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29800,18 +29935,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29850,70 +29985,70 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportConfigurationSettingReport", "Uri": "/deviceManagement/reports/getConfigurationSettingsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportConfigurationSettingReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport", "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicySettingsSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceConfigurationPolicyStatusSummary", "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicyStatusSummary", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceConfigurationPolicyStatusSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceInstallStatusReport", "Uri": "/deviceManagement/reports/getDeviceInstallStatusReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceInstallStatusReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29952,18 +30087,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30002,18 +30137,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30052,18 +30187,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30102,18 +30237,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30152,18 +30287,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30202,81 +30337,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportEnrollmentConfigurationPolicy", "Uri": "/deviceManagement/reports/getEnrollmentConfigurationPoliciesByDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportEnrollmentConfigurationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportExportJob", "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}", - "Method": "GET", - "Module": "Reports", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read devices Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "IsAdmin": true - } - ], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", - "Variants": [ - "Get", - "GetViaIdentity" - ] - }, - { - "Command": "Get-MgDeviceManagementReportExportJob", - "Uri": "/deviceManagement/reports/exportJobs", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReportExportJob", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30315,17 +30400,67 @@ "IsAdmin": true } ], - "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], "OutputType": "IMicrosoftGraphDeviceManagementExportJob", + "Module": "Reports" + }, + { + "Uri": "/deviceManagement/reports/exportJobs", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgDeviceManagementReportExportJob", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read devices Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", + "IsAdmin": true + } + ], "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExportJob", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportExportJob", "Uri": "/deviceManagement/reports/exportJobs", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReportExportJob", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30364,17 +30499,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExportJob", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportExportJob", "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgDeviceManagementReportExportJob", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30413,44 +30548,44 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExportJob", + "Module": "Reports" }, { - "Command": "Get-MgDeviceManagementReportFailedMobileAppReport", "Uri": "/deviceManagement/reports/getFailedMobileAppsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportFailedMobileAppReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportFailedMobileAppSummaryReport", "Uri": "/deviceManagement/reports/getFailedMobileAppsSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportFailedMobileAppSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportFilter", "Uri": "/deviceManagement/reports/getReportFilters", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportFilter", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30489,18 +30624,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportFilter", "Uri": "/deviceManagement/reports/getReportFilters", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportFilter", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30539,18 +30674,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportGroupPolicySettingDeviceSettingReport", "Uri": "/deviceManagement/reports/getGroupPolicySettingsDeviceSettingsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportGroupPolicySettingDeviceSettingReport", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -30565,18 +30700,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportHistoricalReport", "Uri": "/deviceManagement/reports/getHistoricalReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportHistoricalReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30615,18 +30750,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportHistoricalReport", "Uri": "/deviceManagement/reports/getHistoricalReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportHistoricalReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30665,31 +30800,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportMalwareSummaryReport", "Uri": "/deviceManagement/reports/getMalwareSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportMalwareSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30728,18 +30863,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30778,18 +30913,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30828,18 +30963,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30878,68 +31013,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1" - ] - }, - { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", - "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune Device Configuration and Policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read devices Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": null, - "Variants": [ - "Get", - "GetExpanded" - ] + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30978,83 +31063,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "Get1", - "GetExpanded1" - ] - }, - { - "Command": "Get-MgDeviceManagementReportQuietTimePolicyUserReport", - "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Get", - "GetExpanded" - ] - }, - { - "Command": "Get-MgDeviceManagementReportQuietTimePolicyUserSummaryReport", - "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Get", - "GetExpanded" - ] - }, - { - "Command": "Get-MgDeviceManagementReportRelatedAppStatusReport", - "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] - }, - { - "Command": "Get-MgDeviceManagementReportRemoteAssistanceSessionReport", - "Uri": "/deviceManagement/reports/getRemoteAssistanceSessionsReport", - "Method": "POST", - "Module": "DeviceManagement.Actions", - "Permissions": [ - { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "IsAdmin": true - }, - { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": null, - "Variants": [ - "Get", - "GetExpanded" - ] + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", - "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31093,18 +31113,83 @@ "IsAdmin": true } ], + "Variants": [ + "Get1", + "GetExpanded1" + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport", "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportQuietTimePolicyUserReport", + "Permissions": [], + "Variants": [ + "Get", + "GetExpanded" + ], "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportQuietTimePolicyUserSummaryReport", + "Permissions": [], "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportRelatedAppStatusReport", + "Permissions": [], + "Variants": [ + "Get", + "GetExpanded" + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getRemoteAssistanceSessionsReport", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportRemoteAssistanceSessionReport", + "Permissions": [ + { + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", + "IsAdmin": true + } + ], + "Variants": [ + "Get", + "GetExpanded" + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31143,122 +31228,172 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded" + ], "OutputType": null, + "Module": "DeviceManagement.Actions" + }, + { + "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune Device Configuration and Policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read devices Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", + "IsAdmin": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", + "IsAdmin": true + } + ], "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportUnhealthyDefenderAgentReport", "Uri": "/deviceManagement/reports/getUnhealthyDefenderAgentsReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportUnhealthyDefenderAgentReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportUnhealthyFirewallReport", "Uri": "/deviceManagement/reports/getUnhealthyFirewallReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportUnhealthyFirewallReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportUnhealthyFirewallSummaryReport", "Uri": "/deviceManagement/reports/getUnhealthyFirewallSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportUnhealthyFirewallSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportUserInstallStatusReport", "Uri": "/deviceManagement/reports/getUserInstallStatusReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportUserInstallStatusReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportWindowQualityUpdateAlertPerPolicyPerDeviceReport", "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportWindowQualityUpdateAlertPerPolicyPerDeviceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportWindowQualityUpdateAlertSummaryReport", "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportWindowQualityUpdateAlertSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportWindowUpdateAlertPerPolicyPerDeviceReport", "Uri": "/deviceManagement/reports/getWindowsUpdateAlertsPerPolicyPerDeviceReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportWindowUpdateAlertPerPolicyPerDeviceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementReportWindowUpdateAlertSummaryReport", "Uri": "/deviceManagement/reports/getWindowsUpdateAlertSummaryReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementReportWindowUpdateAlertSummaryReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementResourceAccessProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -31273,18 +31408,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementResourceAccessProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -31299,17 +31434,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementResourceAccessProfileAssignment", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementResourceAccessProfileAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -31324,18 +31459,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementResourceAccessProfileAssignment", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementResourceAccessProfileAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -31350,17 +31485,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementResourceOperation", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31375,18 +31510,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementResourceOperation", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31401,17 +31536,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementResourceOperation", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31426,17 +31561,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementResourceOperation", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31451,31 +31586,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementResourceOperationScope", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}/getScopesForUser(userid='{userid}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementResourceOperationScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31490,18 +31625,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31516,17 +31651,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31541,17 +31676,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31566,57 +31701,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTag", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTagByRef", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTagByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTagRoleScopeTag", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/getRoleScopeTagsById", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementRoleAssignmentRoleScopeTagRoleScopeTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31631,18 +31766,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31657,17 +31792,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31682,17 +31817,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31707,18 +31842,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31733,18 +31868,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31759,17 +31894,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31784,17 +31919,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31809,18 +31944,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31835,18 +31970,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31861,18 +31996,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31887,18 +32022,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31913,18 +32048,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleScopeTag", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31939,18 +32074,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleScopeTag", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -31965,105 +32100,105 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleScopeTagAssignment", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleScopeTagAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleScopeTagAssignment", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementRoleScopeTagAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementRoleScopeTagById", "Uri": "/deviceManagement/getRoleScopeTagsByIds(ids=@ids)", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementRoleScopeTagById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementRoleScopeTagByResource", "Uri": "/deviceManagement/getRoleScopeTagsByResource(resource='{resource}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementRoleScopeTagByResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementRoleScopeTagRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/getRoleScopeTagsById", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Get-MgDeviceManagementRoleScopeTagRoleScopeTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Actions" }, { - "Command": "Get-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScript", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32078,18 +32213,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32104,17 +32239,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32129,18 +32264,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32155,17 +32290,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32180,18 +32315,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32206,31 +32341,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32245,31 +32380,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementScriptGroupAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptGroupAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32284,18 +32419,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptGroupAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptGroupAssignment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32310,17 +32445,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptRunSummary", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptRunSummary", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32335,18 +32470,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptRunSummaryByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32361,18 +32496,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptUserRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptUserRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32387,18 +32522,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptUserRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptUserRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32413,17 +32548,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32438,18 +32573,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -32464,56 +32599,56 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementScriptUserRunStateDeviceRunStateManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementSettingDefinition", "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSettingDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32528,18 +32663,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSettingDefinition", "Uri": "/deviceManagement/settingDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSettingDefinition", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32554,17 +32689,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", "Uri": "/deviceManagement/softwareUpdateStatusSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32579,17 +32714,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", "Uri": "/deviceManagement/softwareUpdateStatusSummary", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32604,17 +32739,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32629,17 +32764,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32654,30 +32789,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementSuggestedEnrollmentLimit", "Uri": "/deviceManagement/getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementSuggestedEnrollmentLimit", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -32692,18 +32827,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -32718,17 +32853,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -32743,17 +32878,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -32768,18 +32903,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32794,18 +32929,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32820,17 +32955,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateCategory", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32845,18 +32980,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateCategory", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateCategory", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32871,17 +33006,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateCategoryRecommendedSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateCategoryRecommendedSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32896,18 +33031,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateCategoryRecommendedSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateCategoryRecommendedSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32922,17 +33057,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateMigratableTo", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32947,18 +33082,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateMigratableTo", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32973,17 +33108,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -32998,18 +33133,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTemplateSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTemplateSetting", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -33024,17 +33159,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33049,18 +33184,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33075,17 +33210,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33100,17 +33235,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33125,18 +33260,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33151,18 +33286,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33177,17 +33312,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33202,17 +33337,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33227,18 +33362,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33253,18 +33388,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33279,18 +33414,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33305,18 +33440,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33331,18 +33466,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33357,18 +33492,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33383,17 +33518,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33408,17 +33543,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33433,18 +33568,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33459,18 +33594,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33485,17 +33620,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignmentTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignmentTermAndCondition", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33510,18 +33645,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -33536,18 +33671,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33562,18 +33697,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33588,17 +33723,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33613,17 +33748,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33638,18 +33773,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33664,18 +33799,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33690,17 +33825,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33715,18 +33850,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33741,17 +33876,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33766,18 +33901,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", "Variants": [ "Get2", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33792,17 +33927,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", "Variants": [ "List2" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33817,18 +33952,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", "Variants": [ "Get3", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33843,17 +33978,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", "Variants": [ "List3" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33868,18 +34003,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", "Variants": [ "Get4", "GetViaIdentity4" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33894,17 +34029,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", "Variants": [ "List4" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33919,18 +34054,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33945,17 +34080,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33970,18 +34105,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -33996,17 +34131,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34021,18 +34156,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34047,17 +34182,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34072,18 +34207,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34098,17 +34233,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34123,42 +34258,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Get", "GetViaIdentity" - ] - }, + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" + }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34173,18 +34308,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34199,17 +34334,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34224,18 +34359,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34250,44 +34385,44 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34302,18 +34437,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34328,18 +34463,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34354,18 +34489,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34380,18 +34515,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34406,18 +34541,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34432,18 +34567,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34458,18 +34593,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34484,18 +34619,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34510,18 +34645,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34536,192 +34671,192 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34736,55 +34871,55 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34799,18 +34934,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34825,17 +34960,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34850,18 +34985,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34876,17 +35011,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34901,18 +35036,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34927,17 +35062,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34952,18 +35087,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -34978,17 +35113,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35003,18 +35138,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35029,17 +35164,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35054,18 +35189,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35080,17 +35215,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35105,18 +35240,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35131,17 +35266,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35156,18 +35291,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35182,17 +35317,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35207,18 +35342,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35233,17 +35368,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35258,18 +35393,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35284,17 +35419,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35309,18 +35444,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35335,17 +35470,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticOverview", "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticOverview", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35360,17 +35495,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35385,17 +35520,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRegressionSummary", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRegressionSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35410,18 +35545,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35436,17 +35571,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35461,18 +35596,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35487,17 +35622,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35512,18 +35647,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35538,17 +35673,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35563,18 +35698,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35589,17 +35724,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35614,18 +35749,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35640,17 +35775,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35665,18 +35800,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35691,17 +35826,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35716,17 +35851,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35741,18 +35876,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35767,17 +35902,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35792,18 +35927,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -35818,17 +35953,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementUserPfxCertificate", "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementUserPfxCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -35843,18 +35978,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserPfxCertificate", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementUserPfxCertificate", "Uri": "/deviceManagement/userPfxCertificates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementUserPfxCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -35869,29 +36004,29 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserPfxCertificate", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpoint", "Uri": "/deviceManagement/virtualEndpoint", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEndpoint", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphVirtualEndpoint", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -35906,18 +36041,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcAuditEvent", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "Uri": "/deviceManagement/virtualEndpoint/auditEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -35932,17 +36067,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcAuditEvent", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType", "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -35957,17 +36092,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointCloudPC", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointCloudPC", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -35982,18 +36117,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPc", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointCloudPC", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointCloudPC", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36008,17 +36143,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPc", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36033,18 +36168,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36059,17 +36194,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36084,17 +36219,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage", + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointEffectivePermission", "Uri": "/deviceManagement/virtualEndpoint/getEffectivePermissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Get-MgDeviceManagementVirtualEndpointEffectivePermission", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36109,42 +36244,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36159,18 +36294,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36185,29 +36320,29 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointOrganizationSetting", "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36222,18 +36357,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36248,80 +36383,80 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointServicePlan", "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointServicePlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcServicePlan", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointServicePlan", "Uri": "/deviceManagement/virtualEndpoint/servicePlans", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointServicePlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcServicePlan", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointSupportedRegion", "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointSupportedRegion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointSupportedRegion", "Uri": "/deviceManagement/virtualEndpoint/supportedRegions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointSupportedRegion", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36336,17 +36471,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36361,18 +36496,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSetting", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -36387,42 +36522,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSetting", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Administration", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36437,18 +36572,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36463,119 +36598,119 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36590,18 +36725,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36616,17 +36751,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36641,17 +36776,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36666,18 +36801,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36692,18 +36827,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36718,18 +36853,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfile", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36744,18 +36879,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36770,18 +36905,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowAutopilotSetting", "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowAutopilotSetting", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -36796,17 +36931,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotSettings", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotSettings", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -36821,18 +36956,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -36847,17 +36982,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -36872,18 +37007,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -36898,17 +37033,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36923,18 +37058,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36949,17 +37084,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36974,17 +37109,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36999,18 +37134,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37025,18 +37160,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37051,17 +37186,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37076,17 +37211,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37101,18 +37236,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowMalwareInformation", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowMalwareInformation", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -37127,18 +37262,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsMalwareInformation", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowMalwareInformation", "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowMalwareInformation", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -37153,17 +37288,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsMalwareInformation", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -37178,18 +37313,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement", + "Command": "Get-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -37204,77 +37339,77 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", + "Module": "DeviceManagement" }, { - "Command": "Get-MgDeviceMemberGroup", "Uri": "/devices/{device-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberGroup", "Uri": "/devices/{device-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberObject", "Uri": "/devices/{device-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberObject", "Uri": "/devices/{device-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberOf", "Uri": "/devices/{device-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberOf", "Permissions": [ { "Name": "Device.Read.All", @@ -37307,17 +37442,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberOf", "Uri": "/devices/{device-id}/memberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberOf", "Permissions": [ { "Name": "Device.Read.All", @@ -37350,17 +37485,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberOfByRef", "Uri": "/devices/{device-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberOfByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37393,17 +37528,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceMemberOfByRef", "Uri": "/devices/{device-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceMemberOfByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37436,17 +37571,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredOwner", "Uri": "/devices/{device-id}/registeredOwners", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredOwner", "Permissions": [ { "Name": "Device.Read.All", @@ -37479,17 +37614,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredOwner", "Uri": "/devices/{device-id}/registeredOwners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredOwner", "Permissions": [ { "Name": "Device.Read.All", @@ -37522,17 +37657,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredOwnerByRef", "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredOwnerByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37565,17 +37700,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredOwnerByRef", "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredOwnerByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37608,17 +37743,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredUser", "Uri": "/devices/{device-id}/registeredUsers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredUser", "Permissions": [ { "Name": "Device.Read.All", @@ -37651,17 +37786,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredUser", "Uri": "/devices/{device-id}/registeredUsers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredUser", "Permissions": [ { "Name": "Device.Read.All", @@ -37694,17 +37829,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredUserByRef", "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredUserByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37737,17 +37872,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceRegisteredUserByRef", "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceRegisteredUserByRef", "Permissions": [ { "Name": "Device.Read.All", @@ -37780,17 +37915,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceTransitiveMemberOf", "Uri": "/devices/{device-id}/transitiveMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -37811,17 +37946,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceTransitiveMemberOf", "Uri": "/devices/{device-id}/transitiveMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -37842,17 +37977,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceTransitiveMemberOfByRef", "Uri": "/devices/{device-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -37873,17 +38008,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceTransitiveMemberOfByRef", "Uri": "/devices/{device-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -37904,30 +38039,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceUsageRights", "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceUsageRights", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUsageRight", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceUsageRights", "Uri": "/devices/{device-id}/usageRights", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceUsageRights", "Permissions": [ { "Name": "Device.Read.All", @@ -37954,54 +38089,54 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUsageRight", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDeviceUserOwnedObject", "Uri": "/devices/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDeviceUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectory", "Uri": "/directory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectory", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDirectory", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectory", "Uri": "/directory", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectory1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphDirectory1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38034,18 +38169,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38078,17 +38213,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38121,17 +38256,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38164,18 +38299,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitDelta", "Uri": "/directory/administrativeUnits/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitDelta", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38208,42 +38343,42 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitExtension", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitExtension", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitMember", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38276,17 +38411,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitMemberByRef", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitMemberByRef", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -38319,17 +38454,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -38362,17 +38497,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -38405,93 +38540,93 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAttributeSet", "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAttributeSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttributeSet", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryAttributeSet", "Uri": "/directory/attributeSets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryAttributeSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttributeSet", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAllowedValue", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAllowedValue", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryDeletedItem", "Permissions": [ { "Name": "Application.Read.All", @@ -38548,42 +38683,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryDeletedItem", "Permissions": [ { "Name": "Application.Read.All", @@ -38640,143 +38775,143 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFeatureRolloutPolicy", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFeatureRolloutPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFeatureRolloutPolicy", "Uri": "/directory/featureRolloutPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFeatureRolloutPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFeatureRolloutPolicyApplyTo", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFeatureRolloutPolicyApplyTo", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFederationConfiguration", "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFederationConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProviderBase", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryFederationConfiguration", "Uri": "/directory/federationConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryFederationConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProviderBase", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryInboundSharedUserProfile", "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryInboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryInboundSharedUserProfile", "Uri": "/directory/inboundSharedUserProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryInboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphInboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -38791,42 +38926,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObject", "Uri": "/directoryObjects", + "ApiVersion": "beta", "Method": "GET", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObject", "Uri": "/directoryObjects", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -38841,57 +38976,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectAvailableExtensionProperty", "Uri": "/directoryObjects/getAvailableExtensionProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectAvailableExtensionProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectById", "Uri": "/directoryObjects/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectById", "Uri": "/directoryObjects/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectMemberGroup", "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -38924,20 +39059,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectMemberGroup", "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectMemberGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -38970,20 +39105,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectMemberObject", "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectMemberObject", "Permissions": [ { "Name": "Directory.Read.All", @@ -39004,20 +39139,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectMemberObject", "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectMemberObject", "Permissions": [ { "Name": "Directory.Read.All", @@ -39038,133 +39173,133 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryObjectUserOwnedObject", "Uri": "/directoryObjects/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Get-MgDirectoryObjectUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Get-MgDirectoryOutboundSharedUserProfile", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryOutboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryOutboundSharedUserProfile", "Uri": "/directory/outboundSharedUserProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryOutboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryOutboundSharedUserProfileTenant", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryOutboundSharedUserProfileTenant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantReference", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTenantReference", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryOutboundSharedUserProfileTenant", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryOutboundSharedUserProfileTenant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantReference", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTenantReference", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRecommendation", "Uri": "/directory/recommendations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39197,18 +39332,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRole", "Uri": "/directoryRoles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39241,17 +39376,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRole", "Uri": "/directoryRoles", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39284,17 +39419,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39327,44 +39462,44 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleById", "Uri": "/directoryRoles/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleById", "Uri": "/directoryRoles/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleDelta", "Uri": "/directoryRoles/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39397,17 +39532,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleDelta", "Uri": "/directoryRoles/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39440,17 +39575,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMember", "Uri": "/directoryRoles/{directoryRole-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39483,17 +39618,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMember", "Uri": "/directoryRoles/{directoryRole-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39526,17 +39661,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberByRef", "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39569,17 +39704,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberByRef", "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39612,90 +39747,90 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberGroup", "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberGroup", "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberObject", "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleMemberObject", "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleScopedMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39728,17 +39863,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleScopedMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39771,30 +39906,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39827,18 +39962,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39871,17 +40006,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39914,17 +40049,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -39957,130 +40092,130 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateById", "Uri": "/directoryRoleTemplates/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateById", "Uri": "/directoryRoleTemplates/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateMemberGroup", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateMemberGroup", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateMemberObject", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateMemberObject", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleTemplateUserOwnedObject", "Uri": "/directoryRoleTemplates/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleTemplateUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectoryRoleUserOwnedObject", "Uri": "/directoryRoles/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectoryRoleUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySetting", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -40101,18 +40236,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySetting", "Uri": "/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -40133,17 +40268,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -40164,18 +40299,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySettingTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplate", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -40196,98 +40331,98 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySettingTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplateById", "Uri": "/directorySettingTemplates/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplateById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplateMemberGroup", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplateMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplateMemberObject", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplateMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySettingTemplateUserOwnedObject", "Uri": "/directorySettingTemplates/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySettingTemplateUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySharedEmailDomain", "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySharedEmailDomain", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDirectorySharedEmailDomain", "Uri": "/directory/sharedEmailDomains", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDirectorySharedEmailDomain", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomain", "Permissions": [ { "Name": "Directory.Read.All", @@ -40308,18 +40443,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDomain1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomain", "Uri": "/domains", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomain", "Permissions": [ { "Name": "Directory.Read.All", @@ -40340,17 +40475,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDomain1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomain", "Uri": "/domains", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomain", "Permissions": [ { "Name": "Directory.Read.All", @@ -40371,17 +40506,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomain", "Permissions": [ { "Name": "Directory.Read.All", @@ -40402,18 +40537,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainDomainNameReferenceByRef", "Uri": "/domains/{domain-id}/domainNameReferences/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainDomainNameReferenceByRef", "Permissions": [ { "Name": "Domain.Read.All", @@ -40428,17 +40563,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainDomainNameReferenceByRef", "Uri": "/domains/{domain-id}/domainNameReferences/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainDomainNameReferenceByRef", "Permissions": [ { "Name": "Domain.Read.All", @@ -40453,17 +40588,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainNameReference", "Uri": "/domains/{domain-id}/domainNameReferences", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainNameReference", "Permissions": [ { "Name": "Domain.Read.All", @@ -40478,17 +40613,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainNameReference", "Uri": "/domains/{domain-id}/domainNameReferences", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainNameReference", "Permissions": [ { "Name": "Domain.Read.All", @@ -40503,30 +40638,61 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { + "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgDomainServiceConfigurationRecord", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Domain.Read.All", + "Description": "Read domains.", + "FullDescription": "Allows the app to read all domain properties on your behalf.", + "IsAdmin": true + }, + { + "Name": "Domain.ReadWrite.All", + "Description": "Read and write domains", + "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", + "IsAdmin": true + } + ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" + }, + { "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainServiceConfigurationRecord", "Permissions": [ { "Name": "Directory.Read.All", @@ -40547,99 +40713,68 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ - "List" - ] - }, - { - "Command": "Get-MgDomainServiceConfigurationRecord", - "Uri": "/domains/{domain-id}/serviceConfigurationRecords", - "Method": "GET", - "Module": "Identity.DirectoryManagement", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Domain.Read.All", - "Description": "Read domains.", - "FullDescription": "Allows the app to read all domain properties on your behalf.", - "IsAdmin": true - }, - { - "Name": "Domain.ReadWrite.All", - "Description": "Read and write domains", - "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", - "IsAdmin": true - } + "List1" ], - "ApiVersion": "v1.0", "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Variants": [ - "List1" - ] + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainSharedEmailDomainInvitation", "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainSharedEmailDomainInvitation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainSharedEmailDomainInvitation", "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainSharedEmailDomainInvitation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainVerificationDnsRecord", "Permissions": [ { "Name": "Directory.Read.All", @@ -40660,17 +40795,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainVerificationDnsRecord", "Permissions": [ { "Name": "Directory.Read.All", @@ -40691,30 +40826,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDrive", "Permissions": [ { "Name": "Files.Read", @@ -40753,42 +40888,42 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgDrive", "Uri": "/drives", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgDrive", "Uri": "/drives", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDrive", "Permissions": [ { "Name": "Files.Read", @@ -40827,18 +40962,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgDriveActivity", "Uri": "/drives/{drive-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveActivity", "Permissions": [ { "Name": "Files.Read", @@ -40877,169 +41012,169 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Files" }, { - "Command": "Get-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundle", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundle", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundle", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundle", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveBundleContent", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundleContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveBundleContent", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveBundleContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveFollowing", "Uri": "/drives/{drive-id}/following", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveFollowing", "Uri": "/drives/{drive-id}/following", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveFollowingContent", "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowingContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveFollowingContent", "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveFollowingContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveItem", "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveItem", "Permissions": [ { "Name": "Files.Read", @@ -41078,92 +41213,42 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveItem", "Uri": "/drives/{drive-id}/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveItem", "Uri": "/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "List1" - ] - }, - { - "Command": "Get-MgDriveItem", - "Uri": "/drives/{drive-id}/items/{driveItem-id}", - "Method": "GET", - "Module": "Files", - "Permissions": [ - { - "Name": "Files.Read", - "Description": "Read your files", - "FullDescription": "Allows the app to read your files.", - "IsAdmin": false - }, - { - "Name": "Files.Read.All", - "Description": "Read all files that you have access to", - "FullDescription": "Allows the app to read all files you can access.", - "IsAdmin": false - }, - { - "Name": "Files.ReadWrite", - "Description": "Have full access to your files", - "FullDescription": "Allows the app to read, create, update, and delete your files.", - "IsAdmin": false - }, - { - "Name": "Files.ReadWrite.All", - "Description": "Have full access to all files you have access to", - "FullDescription": "Allows the app to read, create, update and delete all files that you can access.", - "IsAdmin": false - }, - { - "Name": "Sites.Read.All", - "Description": "Read items in all site collections", - "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf", - "IsAdmin": false - }, - { - "Name": "Sites.ReadWrite.All", - "Description": "Edit or delete items in all site collections", - "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", - "IsAdmin": false - } ], - "ApiVersion": "v1.0", "OutputType": "IMicrosoftGraphDriveItem1", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Files" }, { - "Command": "Get-MgDriveItemContent", - "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveItem", "Permissions": [ { "Name": "Files.Read", @@ -41202,18 +41287,68 @@ "IsAdmin": false } ], + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" + }, + { + "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", "ApiVersion": "beta", - "OutputType": null, + "Method": "GET", + "Command": "Get-MgDriveItemContent", + "Permissions": [ + { + "Name": "Files.Read", + "Description": "Read your files", + "FullDescription": "Allows the app to read your files.", + "IsAdmin": false + }, + { + "Name": "Files.Read.All", + "Description": "Read all files that you have access to", + "FullDescription": "Allows the app to read all files you can access.", + "IsAdmin": false + }, + { + "Name": "Files.ReadWrite", + "Description": "Have full access to your files", + "FullDescription": "Allows the app to read, create, update, and delete your files.", + "IsAdmin": false + }, + { + "Name": "Files.ReadWrite.All", + "Description": "Have full access to all files you have access to", + "FullDescription": "Allows the app to read, create, update and delete all files that you can access.", + "IsAdmin": false + }, + { + "Name": "Sites.Read.All", + "Description": "Read items in all site collections", + "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf", + "IsAdmin": false + }, + { + "Name": "Sites.ReadWrite.All", + "Description": "Edit or delete items in all site collections", + "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", + "IsAdmin": false + } + ], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveItemContent", "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveItemContent", "Permissions": [ { "Name": "Files.Read", @@ -41252,1078 +41387,1078 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphList", + "Module": "Files" }, { - "Command": "Get-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphList1", + "Module": "Files" }, { - "Command": "Get-MgDriveListActivity", "Uri": "/drives/{drive-id}/list/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumnSourceColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumnSourceColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseTypeByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeBaseTypeByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnPosition", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnPosition", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnPositionByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnPositionByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnSourceColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnSourceColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "Get-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "Get-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemActivity", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemActivity", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemActivity", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat1", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemAnalytic", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemAnalytic", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemAnalytic", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemAnalytic", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemDriveItemContent", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemDriveItemContent", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "Get-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "Get-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "Get-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "Get-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveRootContent", "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveRootContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveRootContent", "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveRootContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveSpecial", "Uri": "/drives/{drive-id}/special", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgDriveSpecial", "Uri": "/drives/{drive-id}/special", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecial", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecial", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgDriveSpecialContent", "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecialContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgDriveSpecialContent", "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgDriveSpecialContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationClass", "Uri": "/education/classes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationClass", "Uri": "/education/classes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42350,18 +42485,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42388,17 +42523,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42425,17 +42560,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42462,33 +42597,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Get", "Get3", "GetViaIdentity", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentCategory", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42515,18 +42650,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "List", "List3" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentCategory", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42553,18 +42688,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "List1", "List2" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentCategory", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42591,20 +42726,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentCategoryDelta", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentCategoryDelta", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42631,20 +42766,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentDefault", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42671,18 +42806,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentDefault", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42709,18 +42844,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentDelta", "Uri": "/education/classes/{educationClass-id}/assignments/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentDelta", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42747,18 +42882,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42785,18 +42920,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42823,17 +42958,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42860,17 +42995,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42897,18 +43032,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42935,18 +43070,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -42973,18 +43108,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSetting", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43011,18 +43146,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentSettings", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSetting", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43049,18 +43184,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentSettings", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43087,18 +43222,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43125,17 +43260,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43162,17 +43297,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43199,31 +43334,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43250,17 +43385,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43287,30 +43422,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43337,42 +43472,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43399,18 +43534,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43437,18 +43572,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43475,17 +43610,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43512,17 +43647,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [ { "Name": "EduAssignments.Read", @@ -43549,18 +43684,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationClassDelta", "Uri": "/education/classes/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassDelta", "Permissions": [ { "Name": "EduRoster.Read", @@ -43581,17 +43716,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationClassDelta", "Uri": "/education/classes/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassDelta", "Permissions": [ { "Name": "EduRoster.Read", @@ -43612,131 +43747,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta" - ] - }, - { - "Command": "Get-MgEducationClassGroup", - "Uri": "/education/classes/{educationClass-id}/group", - "Method": "GET", - "Module": "Education", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Read", - "Description": "View your school, class and user information", - "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.ReadBasic", - "Description": "View a limited subset of your school, class and user information", - "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Write", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false - } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassGroup", "Uri": "/education/classes/{educationClass-id}/group", - "Method": "GET", - "Module": "Education", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Read", - "Description": "View your school, class and user information", - "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.ReadBasic", - "Description": "View a limited subset of your school, class and user information", - "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Write", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false - } - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", - "Variants": [ - "Get", - "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationClassGroupByRef", - "Uri": "/education/classes/{educationClass-id}/group/$ref", - "Method": "GET", - "Module": "Education", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Read", - "Description": "View your school, class and user information", - "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.ReadBasic", - "Description": "View a limited subset of your school, class and user information", - "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true - }, - { - "Name": "EduRoster.Write", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false - } - ], "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Get1", - "GetViaIdentity1" - ] - }, - { - "Command": "Get-MgEducationClassGroupByRef", - "Uri": "/education/classes/{educationClass-id}/group/$ref", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassGroup", "Permissions": [ { "Name": "Directory.Read.All", @@ -43763,384 +43784,461 @@ "IsAdmin": false } ], + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Education" + }, + { + "Uri": "/education/classes/{educationClass-id}/group", "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgEducationClassGroup", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Read", + "Description": "View your school, class and user information", + "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.ReadBasic", + "Description": "View a limited subset of your school, class and user information", + "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Write", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false + } + ], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Education" + }, + { + "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgEducationClassGroupByRef", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Read", + "Description": "View your school, class and user information", + "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.ReadBasic", + "Description": "View a limited subset of your school, class and user information", + "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Write", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false + } + ], + "Variants": [ + "Get1", + "GetViaIdentity1" + ], "OutputType": null, + "Module": "Education" + }, + { + "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgEducationClassGroupByRef", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Read", + "Description": "View your school, class and user information", + "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.ReadBasic", + "Description": "View a limited subset of your school, class and user information", + "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true + }, + { + "Name": "EduRoster.Write", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false + } + ], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassMember", "Uri": "/education/classes/{educationClass-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMember", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationClassMember", "Uri": "/education/classes/{educationClass-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMember", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassMemberByRef", "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMemberByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassMemberByRef", "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMemberByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassMemberDelta", "Uri": "/education/classes/{educationClass-id}/members/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMemberDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationClassMemberDelta", "Uri": "/education/classes/{educationClass-id}/members/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassMemberDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchool", "Uri": "/education/classes/{educationClass-id}/schools", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchool", "Uri": "/education/classes/{educationClass-id}/schools", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchoolByRef", "Uri": "/education/classes/{educationClass-id}/schools/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchoolByRef", "Uri": "/education/classes/{educationClass-id}/schools/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchoolDelta", "Uri": "/education/classes/{educationClass-id}/schools/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchoolDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationClassSchoolDelta", "Uri": "/education/classes/{educationClass-id}/schools/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassSchoolDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacher", "Uri": "/education/classes/{educationClass-id}/teachers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacher", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacher", "Uri": "/education/classes/{educationClass-id}/teachers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacher", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacherByRef", "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacherByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacherByRef", "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacherByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacherDelta", "Uri": "/education/classes/{educationClass-id}/teachers/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacherDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationClassTeacherDelta", "Uri": "/education/classes/{educationClass-id}/teachers/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationClassTeacherDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMe", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMe", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignment", "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ - "Get1", - "GetViaIdentity1" - ] - }, - { - "Command": "Get-MgEducationMeAssignment", - "Uri": "/education/me/assignments", - "Method": "GET", - "Module": "Education", - "Permissions": [ - { - "Name": "EduAssignments.Read", - "Description": "View your assignments and grades", - "FullDescription": "Allows the app to view your assignments on your behalf including grades.", - "IsAdmin": true - }, - { - "Name": "EduAssignments.ReadBasic", - "Description": "View your assignments without grades", - "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", - "IsAdmin": true - }, - { - "Name": "EduAssignments.ReadWrite", - "Description": "View and modify your assignments and grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "IsAdmin": true - }, - { - "Name": "EduAssignments.ReadWriteBasic", - "Description": "View and modify your assignments without grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "IsAdmin": true - } + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "List1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignment", "Uri": "/education/me/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignment", "Permissions": [ { "Name": "EduAssignments.Read", @@ -44167,473 +44265,297 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignment", - "Uri": "/education/me/assignments/{educationAssignment-id}", + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentCategory", "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Method": "GET", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "List1" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "List" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentCategoryDelta", "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentCategoryDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentDelta", "Uri": "/education/me/assignments/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentResource", "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "List1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentResource", "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "List" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentRubric", "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentRubric", - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationRubric", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationOutcome", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentSubmissionResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationMeAssignmentSubmissionResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationMeClass", "Uri": "/education/me/classes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationMeClass", "Uri": "/education/me/classes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeClassByRef", "Uri": "/education/me/classes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeClassByRef", "Uri": "/education/me/classes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeClassDelta", "Uri": "/education/me/classes/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClassDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationMeClassDelta", "Uri": "/education/me/classes/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeClassDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -44660,18 +44582,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationMeRubric", "Uri": "/education/me/rubrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -44698,17 +44620,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationMeRubric", "Uri": "/education/me/rubrics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -44735,17 +44657,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.Read", @@ -44772,202 +44694,202 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchool", "Uri": "/education/me/schools", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchool", "Uri": "/education/me/schools", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchoolByRef", "Uri": "/education/me/schools/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchoolByRef", "Uri": "/education/me/schools/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchoolDelta", "Uri": "/education/me/schools/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchoolDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationMeSchoolDelta", "Uri": "/education/me/schools/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeSchoolDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClass", "Uri": "/education/me/taughtClasses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClass", "Uri": "/education/me/taughtClasses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClassByRef", "Uri": "/education/me/taughtClasses/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClassByRef", "Uri": "/education/me/taughtClasses/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClassDelta", "Uri": "/education/me/taughtClasses/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClassDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationMeTaughtClassDelta", "Uri": "/education/me/taughtClasses/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeTaughtClassDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeUser", "Uri": "/education/me/user", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeUser", "Permissions": [ { "Name": "Directory.Read.All", @@ -45000,17 +44922,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Education" }, { - "Command": "Get-MgEducationMeUser", "Uri": "/education/me/user", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeUser", "Permissions": [ { "Name": "Directory.Read.All", @@ -45043,17 +44965,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeUserByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -45086,17 +45008,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationMeUserByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -45129,385 +45051,385 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationRoot", "Uri": "/education", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRoot", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphEducationRoot", + "Module": "Education" }, { - "Command": "Get-MgEducationRoot", "Uri": "/education", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRoot1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRoot1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationSchool", "Uri": "/education/schools", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationSchool", "Uri": "/education/schools", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolAdministrativeUnit", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolAdministrativeUnit", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolAdministrativeUnit", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolAdministrativeUnit", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolAdministrativeUnitByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolAdministrativeUnitByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClass", "Uri": "/education/schools/{educationSchool-id}/classes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClass", "Uri": "/education/schools/{educationSchool-id}/classes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClassByRef", "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClassByRef", "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClassDelta", "Uri": "/education/schools/{educationSchool-id}/classes/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClassDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolClassDelta", "Uri": "/education/schools/{educationSchool-id}/classes/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolClassDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolDelta", "Uri": "/education/schools/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolDelta", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolDelta", "Uri": "/education/schools/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolDelta", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUser", "Uri": "/education/schools/{educationSchool-id}/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUser", "Uri": "/education/schools/{educationSchool-id}/users", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUserByRef", "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUserByRef", "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUserDelta", "Uri": "/education/schools/{educationSchool-id}/users/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUserDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationSchoolUserDelta", "Uri": "/education/schools/{educationSchool-id}/users/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSchoolUserDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSynchronizationProfile", "Permissions": [ { "Name": "EduAdministration.Read", @@ -45522,18 +45444,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", + "Module": "Education" }, { - "Command": "Get-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSynchronizationProfile", "Permissions": [ { "Name": "EduAdministration.Read", @@ -45548,30 +45470,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", + "Module": "Education" }, { - "Command": "Get-MgEducationSynchronizationProfileError", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSynchronizationProfileError", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationError", + "Module": "Education" }, { - "Command": "Get-MgEducationSynchronizationProfileError", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSynchronizationProfileError", "Permissions": [ { "Name": "EduAdministration.Read", @@ -45586,17 +45508,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationError", + "Module": "Education" }, { - "Command": "Get-MgEducationSynchronizationProfileStatus", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationSynchronizationProfileStatus", "Permissions": [ { "Name": "EduAdministration.Read", @@ -45611,850 +45533,662 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus", + "Module": "Education" }, { - "Command": "Get-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUser", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationUser", "Uri": "/education/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationUser", "Uri": "/education/users", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUser", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentCategory", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentCategory", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentCategory", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentCategory", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentCategoryDelta", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentCategoryDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentDelta", "Uri": "/education/users/{educationUser-id}/assignments/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentRubric", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentRubric", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationRubric", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationOutcome", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List" - ] + "Module": "Education" }, { - "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Method": "GET", - "Module": "Education", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "Get-MgEducationUserClass", "Uri": "/education/users/{educationUser-id}/classes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationUserClass", "Uri": "/education/users/{educationUser-id}/classes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserClassByRef", "Uri": "/education/users/{educationUser-id}/classes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserClassByRef", "Uri": "/education/users/{educationUser-id}/classes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserClassDelta", "Uri": "/education/users/{educationUser-id}/classes/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClassDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationUserClassDelta", "Uri": "/education/users/{educationUser-id}/classes/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserClassDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserDelta", "Uri": "/education/users/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserDelta", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "Get-MgEducationUserDelta", "Uri": "/education/users/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserDelta", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchool", "Uri": "/education/users/{educationUser-id}/schools", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchool", "Uri": "/education/users/{educationUser-id}/schools", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchool", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchoolByRef", "Uri": "/education/users/{educationUser-id}/schools/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchoolByRef", "Uri": "/education/users/{educationUser-id}/schools/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchoolByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchoolDelta", "Uri": "/education/users/{educationUser-id}/schools/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchoolDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "Get-MgEducationUserSchoolDelta", "Uri": "/education/users/{educationUser-id}/schools/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserSchoolDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClass", "Uri": "/education/users/{educationUser-id}/taughtClasses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClass", "Uri": "/education/users/{educationUser-id}/taughtClasses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClass", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClassByRef", "Uri": "/education/users/{educationUser-id}/taughtClasses/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClassByRef", "Uri": "/education/users/{educationUser-id}/taughtClasses/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClassByRef", "Permissions": { "Name": "EduRoster.ReadBasic", "Description": "View a limited subset of your school, class and user information", "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClassDelta", "Uri": "/education/users/{educationUser-id}/taughtClasses/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClassDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "Get-MgEducationUserTaughtClassDelta", "Uri": "/education/users/{educationUser-id}/taughtClasses/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserTaughtClassDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "Get-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserUserByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -46487,18 +46221,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Education", + "Command": "Get-MgEducationUserUserByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -46531,18 +46265,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Get-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackage", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46557,18 +46291,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackage", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46583,17 +46317,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackage", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46608,17 +46342,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackage", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46633,43 +46367,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAccessPackageIncompatibleByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAccessPackageIncompatibleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46684,18 +46418,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46710,31 +46444,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignment", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignment", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignment", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46749,42 +46483,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStage1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStage1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46799,18 +46533,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46825,30 +46559,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46863,18 +46597,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46889,30 +46623,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentResourceRole", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentResourceRole", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46927,18 +46661,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentResourceRole", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentResourceRole", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46953,17 +46687,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -46978,18 +46712,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47004,30 +46738,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/catalog", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", "Variants": [ "Get2", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResource", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResource", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47042,17 +46776,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResource", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceRole", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47067,128 +46801,128 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageCatalogAccessPackageResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageIncompatible", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatible", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResource", "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResource", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResource", "Uri": "/identityGovernance/entitlementManagement/accessPackageResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResource", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironment", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironment", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47203,18 +46937,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironment", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironment", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47229,42 +46963,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceRequest", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47279,105 +47013,105 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/accessPackageResource/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementCatalog", "Uri": "/identityGovernance/entitlementManagement/catalogs", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementCatalog", "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganization", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47392,18 +47126,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganization", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47418,17 +47152,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganization", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47443,17 +47177,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganization", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47468,31 +47202,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47507,17 +47241,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47532,43 +47266,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47583,17 +47317,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47608,30 +47342,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementSetting", "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementSetting", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47646,17 +47380,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphEntitlementManagementSettings1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgEntitlementManagementSetting", "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgEntitlementManagementSetting", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -47671,2851 +47405,2851 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphEntitlementManagementSettings", + "Module": "Identity.Governance" }, { - "Command": "Get-MgExternal", "Uri": "/external", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", + "Module": "Search" }, { - "Command": "Get-MgExternal", "Uri": "/external", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternal", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", + "Module": "Search" }, { - "Command": "Get-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternalConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", + "Module": "Search" }, { - "Command": "Get-MgExternalConnection", "Uri": "/external/connections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternalConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", + "Module": "Search" }, { - "Command": "Get-MgExternalConnection", "Uri": "/external/connections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternalConnection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", + "Module": "Search" }, { - "Command": "Get-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Search", + "Command": "Get-MgExternalConnection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", + "Module": "Search" }, { - "Command": "Get-MgFinancial", "Uri": "/financials", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphCompany", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompany", "Uri": "/financials/companies/{company-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompany", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCompany", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompany", "Uri": "/financials/companies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompany", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCompany", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAccount", "Uri": "/financials/companies/{company-id}/accounts/{account-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAccount", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAccount", "Uri": "/financials/companies/{company-id}/accounts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAgedAccountPayable", "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAgedAccountPayable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsPayable", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsPayable", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAgedAccountPayable", "Uri": "/financials/companies/{company-id}/agedAccountsPayable", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAgedAccountPayable", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsPayable", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsPayable", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAgedAccountReceivable", "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAgedAccountReceivable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsReceivable", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsReceivable", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyAgedAccountReceivable", "Uri": "/financials/companies/{company-id}/agedAccountsReceivable", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyAgedAccountReceivable", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsReceivable", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsReceivable", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCountryRegion", "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCountryRegion", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCountryRegion", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCountryRegion", "Uri": "/financials/companies/{company-id}/countriesRegions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCountryRegion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCountryRegion", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCurrency", "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCurrency", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCurrency", "Uri": "/financials/companies/{company-id}/currencies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomer", "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomer", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomer", "Uri": "/financials/companies/{company-id}/customers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerCurrency", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPayments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournal", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournal", "Uri": "/financials/companies/{company-id}/customerPaymentJournals", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalAccount", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "Get", "GetViaIdentity" - ] - }, + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" + }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPicture", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPicture", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyDimension", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyDimension", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimension", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDimension", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyDimension", "Uri": "/financials/companies/{company-id}/dimensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyDimension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDimension", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyDimensionValue", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/{dimensionValue-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyDimensionValue", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimensionValue", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDimensionValue", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyDimensionValue", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyDimensionValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimensionValue", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphDimensionValue", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyEmployee", "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyEmployee", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmployee", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyEmployee", "Uri": "/financials/companies/{company-id}/employees", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyEmployee", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEmployee", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyEmployeePicture", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyEmployeePicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyEmployeePicture", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyEmployeePicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyEmployeePictureContent", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyEmployeePictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyGeneralLedgerEntry", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyGeneralLedgerEntry", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGeneralLedgerEntry", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGeneralLedgerEntry", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyGeneralLedgerEntry", "Uri": "/financials/companies/{company-id}/generalLedgerEntries", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyGeneralLedgerEntry", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGeneralLedgerEntry", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGeneralLedgerEntry", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyGeneralLedgerEntryAccount", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyGeneralLedgerEntryAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyInformation", "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyInformation", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCompanyInformation1", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyInformation", "Uri": "/financials/companies/{company-id}/companyInformation", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyInformation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCompanyInformation1", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyInformationPicture", "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyInformationPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItem", "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItem", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItem", "Uri": "/financials/companies/{company-id}/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItemCategory", "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItemCategory", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItemCategory", "Uri": "/financials/companies/{company-id}/itemCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItemPicture", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItemPicture", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyItemPictureContent", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphJournal", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphJournal", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournalAccount", "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournalLine", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournalLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphJournalLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournalLine", "Uri": "/financials/companies/{company-id}/journalLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournalLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphJournalLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyJournalLineAccount", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyJournalLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPaymentMethod", "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPaymentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPaymentMethod", "Uri": "/financials/companies/{company-id}/paymentMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPaymentTerm", "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPaymentTerm", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPaymentTerm", "Uri": "/financials/companies/{company-id}/paymentTerms", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPicture", "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPicture", "Uri": "/financials/companies/{company-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPictureContent", "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoice", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoice", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLine", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLine", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItem", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPictureContent", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendor", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphVendor", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPictureContent", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyPurchaseInvoiceVendorPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemo", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemo", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemo", "Uri": "/financials/companies/{company-id}/salesCreditMemos", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemo", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomer", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoice", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoice", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomer", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPicture", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPicture", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLine", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoiceLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLine", "Uri": "/financials/companies/{company-id}/salesInvoiceLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoiceLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineItem", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoicePaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoicePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleInvoiceShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleInvoiceShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrder", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrder", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrder", "Uri": "/financials/companies/{company-id}/salesOrders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrder", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomer", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerPicture", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerPicture", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLine", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrderLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLine", "Uri": "/financials/companies/{company-id}/salesOrderLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrderLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineAccount", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineItem", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineItemCategory", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineItemPicture", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineItemPicture", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleOrderPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleOrderPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuote", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuote", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomer", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerPicture", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerPicture", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLine", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuoteLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLine", "Uri": "/financials/companies/{company-id}/salesQuoteLines", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuoteLine", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineAccount", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineItem", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineItemCategory", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineItemPicture", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineItemPicture", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuotePaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuotePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanySaleQuoteShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanySaleQuoteShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyShipmentMethod", "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyShipmentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyShipmentMethod", "Uri": "/financials/companies/{company-id}/shipmentMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyTaxArea", "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyTaxArea", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTaxArea", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyTaxArea", "Uri": "/financials/companies/{company-id}/taxAreas", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyTaxArea", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTaxArea", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyTaxGroup", "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyTaxGroup", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTaxGroup", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyTaxGroup", "Uri": "/financials/companies/{company-id}/taxGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyTaxGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTaxGroup", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyUnit", "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyUnit", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnitOfMeasure", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyUnit", "Uri": "/financials/companies/{company-id}/unitsOfMeasure", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyUnit", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnitOfMeasure", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendor", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendor", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphVendor", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendor", "Uri": "/financials/companies/{company-id}/vendors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphVendor", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorCurrency", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorPicture", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorPicture", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "Get-MgFinancialCompanyVendorPictureContent", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Financials", + "Command": "Get-MgFinancialCompanyVendorPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Get-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -50554,18 +50288,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Get-MgGroup", "Uri": "/groups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -50604,17 +50338,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Get-MgGroup", "Uri": "/groups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -50653,17 +50387,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Groups" }, { - "Command": "Get-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -50702,18 +50436,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Groups" }, { - "Command": "Get-MgGroupAcceptedSender", "Uri": "/groups/{group-id}/acceptedSenders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupAcceptedSender", "Permissions": [ { "Name": "Group.Read.All", @@ -50728,17 +50462,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupAcceptedSender", "Uri": "/groups/{group-id}/acceptedSenders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupAcceptedSender", "Permissions": [ { "Name": "Group.Read.All", @@ -50753,17 +50487,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupAcceptedSenderByRef", "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupAcceptedSenderByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -50778,17 +50512,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupAcceptedSenderByRef", "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupAcceptedSenderByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -50803,30 +50537,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgGroupAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -50853,17 +50587,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -50890,82 +50624,82 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgGroupAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgGroupById", "Uri": "/groups/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupById", "Uri": "/groups/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupCalendar", "Uri": "/groups/{group-id}/calendar", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendar", "Uri": "/groups/{group-id}/calendar", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarEventDelta", "Uri": "/groups/{group-id}/calendar/events/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCalendarEventDelta", "Permissions": [ { "Name": "Calendars.Read", @@ -50986,18 +50720,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Groups" }, { - "Command": "Get-MgGroupCalendarEventDelta", "Uri": "/groups/{group-id}/calendar/events/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCalendarEventDelta", "Permissions": [ { "Name": "Calendars.Read", @@ -51018,232 +50752,232 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Groups" }, { - "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarSchedule", "Uri": "/groups/{group-id}/calendar/getSchedule", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupCalendarSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Groups" }, { - "Command": "Get-MgGroupCalendarSchedule", "Uri": "/groups/{group-id}/calendar/getSchedule", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupCalendarSchedule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Groups" }, { - "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarView", "Uri": "/groups/{group-id}/calendar/calendarView", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarView", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupCalendarView", "Uri": "/groups/{group-id}/calendar/calendarView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupCalendarView", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversation", "Permissions": [ { "Name": "Group.Read.All", @@ -51258,18 +50992,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversation", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversation", "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversation", "Permissions": [ { "Name": "Group.Read.All", @@ -51284,17 +51018,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversation", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversation", "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversation", "Permissions": [ { "Name": "Group.Read.All", @@ -51309,17 +51043,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversation1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversation", "Permissions": [ { "Name": "Group.Read.All", @@ -51334,18 +51068,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversation1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThread", "Permissions": [ { "Name": "Group.Read.All", @@ -51360,18 +51094,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThread", "Permissions": [ { "Name": "Group.Read.All", @@ -51386,17 +51120,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThread", "Permissions": [ { "Name": "Group.Read.All", @@ -51411,17 +51145,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThread", "Permissions": [ { "Name": "Group.Read.All", @@ -51436,18 +51170,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -51462,20 +51196,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -51490,17 +51224,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -51515,17 +51249,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -51540,33 +51274,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostAttachment", "Permissions": [ { "Name": "Group.Read.All", @@ -51581,17 +51315,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostAttachment", "Permissions": [ { "Name": "Group.Read.All", @@ -51606,257 +51340,257 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMention", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMention", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupCreatedOnBehalfOf", "Uri": "/groups/{group-id}/createdOnBehalfOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCreatedOnBehalfOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupCreatedOnBehalfOf", "Uri": "/groups/{group-id}/createdOnBehalfOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCreatedOnBehalfOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupDelta", "Uri": "/groups/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -51895,17 +51629,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Get-MgGroupDelta", "Uri": "/groups/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -51944,17 +51678,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Groups" }, { - "Command": "Get-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgGroupDrive", "Permissions": [ { "Name": "Files.Read", @@ -51993,20 +51727,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgGroupDrive", "Uri": "/groups/{group-id}/drives", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgGroupDrive", "Permissions": [ { "Name": "Files.Read", @@ -52045,17 +51779,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgGroupDrive", "Uri": "/groups/{group-id}/drives", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgGroupDrive", "Permissions": [ { "Name": "Files.Read", @@ -52094,17 +51828,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgGroupDrive", "Permissions": [ { "Name": "Files.Read", @@ -52143,20 +51877,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgGroupEndpoint", "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupEndpoint", "Permissions": [ { "Name": "Group.Read.All", @@ -52171,18 +51905,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Groups" }, { - "Command": "Get-MgGroupEndpoint", "Uri": "/groups/{group-id}/endpoints", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupEndpoint", "Permissions": [ { "Name": "Group.Read.All", @@ -52197,17 +51931,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Groups" }, { - "Command": "Get-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -52228,18 +51962,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEvent", "Uri": "/groups/{group-id}/events", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEvent", "Permissions": [ { "Name": "Group.Read.All", @@ -52254,17 +51988,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEvent", "Uri": "/groups/{group-id}/events", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEvent", "Permissions": [ { "Name": "Group.Read.All", @@ -52279,17 +52013,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -52310,104 +52044,104 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventAttachment", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventAttachment", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventCalendar", "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventCalendar", "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventDelta", "Uri": "/groups/{group-id}/events/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupEventDelta", "Permissions": [ { "Name": "Calendars.Read", @@ -52428,18 +52162,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Groups" }, { - "Command": "Get-MgGroupEventDelta", "Uri": "/groups/{group-id}/events/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupEventDelta", "Permissions": [ { "Name": "Calendars.Read", @@ -52460,303 +52194,303 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Groups" }, { - "Command": "Get-MgGroupEventExceptionOccurrence", "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventExceptionOccurrence", "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventInstance", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventInstance", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupExtension", "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupExtension", "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupLifecyclePolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -52771,18 +52505,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { - "Command": "Get-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupLifecyclePolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -52797,17 +52531,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { - "Command": "Get-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupLifecyclePolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -52822,17 +52556,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { - "Command": "Get-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupLifecyclePolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -52847,18 +52581,61 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { + "Uri": "/groups/{group-id}/members", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgGroupMember", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true + }, + { + "Name": "GroupMember.Read.All", + "Description": "Read group memberships", + "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.", + "IsAdmin": true + }, + { + "Name": "GroupMember.ReadWrite.All", + "Description": "Read and write group memberships", + "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.", + "IsAdmin": true + } + ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" + }, + { "Uri": "/groups/{group-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMember", "Permissions": [ { "Name": "Directory.Read.All", @@ -52891,17 +52668,60 @@ "IsAdmin": true } ], - "ApiVersion": "beta", + "Variants": [ + "List3" + ], "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" + }, + { + "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgGroupMemberByRef", + "Permissions": [ + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true + }, + { + "Name": "GroupMember.Read.All", + "Description": "Read group memberships", + "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.", + "IsAdmin": true + }, + { + "Name": "GroupMember.ReadWrite.All", + "Description": "Read and write group memberships", + "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.", + "IsAdmin": true + } + ], "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMember", - "Uri": "/groups/{group-id}/members", + "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -52934,103 +52754,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List3" - ] - }, - { - "Command": "Get-MgGroupMemberByRef", - "Uri": "/groups/{group-id}/members/$ref", - "Method": "GET", - "Module": "Groups", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true - }, - { - "Name": "GroupMember.Read.All", - "Description": "Read group memberships", - "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.", - "IsAdmin": true - }, - { - "Name": "GroupMember.ReadWrite.All", - "Description": "Read and write group memberships", - "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.", - "IsAdmin": true - } - ], - "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "List" - ] - }, - { - "Command": "Get-MgGroupMemberByRef", - "Uri": "/groups/{group-id}/members/$ref", - "Method": "GET", - "Module": "Groups", - "Permissions": [ - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true - }, - { - "Name": "GroupMember.Read.All", - "Description": "Read group memberships", - "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.", - "IsAdmin": true - }, - { - "Name": "GroupMember.ReadWrite.All", - "Description": "Read and write group memberships", - "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.", - "IsAdmin": true - } ], - "ApiVersion": "v1.0", "OutputType": null, - "Variants": [ - "List3" - ] + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberGroup", "Uri": "/groups/{group-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -53075,20 +52809,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberGroup", "Uri": "/groups/{group-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -53133,20 +52867,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberObject", "Uri": "/groups/{group-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -53179,20 +52913,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberObject", "Uri": "/groups/{group-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -53225,20 +52959,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberOf", "Uri": "/groups/{group-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberOf", "Permissions": [ { "Name": "Group.Read.All", @@ -53253,17 +52987,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List5" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberOf", "Uri": "/groups/{group-id}/memberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberOf", "Permissions": [ { "Name": "Group.Read.All", @@ -53278,17 +53012,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List2" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberOfByRef", "Uri": "/groups/{group-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberOfByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -53303,17 +53037,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List5" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberOfByRef", "Uri": "/groups/{group-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberOfByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -53328,65 +53062,65 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List2" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberWithLicenseError", "Uri": "/groups/{group-id}/membersWithLicenseErrors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberWithLicenseError", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberWithLicenseError", "Uri": "/groups/{group-id}/membersWithLicenseErrors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberWithLicenseError", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List4" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberWithLicenseErrorByRef", "Uri": "/groups/{group-id}/membersWithLicenseErrors/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberWithLicenseErrorByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupMemberWithLicenseErrorByRef", "Uri": "/groups/{group-id}/membersWithLicenseErrors/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupMemberWithLicenseErrorByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List4" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -53419,18 +53153,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -53463,17 +53197,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -53506,17 +53240,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -53549,48 +53283,48 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Groups" }, { - "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Groups" }, { - "Command": "Get-MgGroupOnenoteNotebookSection", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -53623,17 +53357,60 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebookSection", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebookSection", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false + } + ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" + }, + { + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -53666,60 +53443,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ - "List" - ] - }, - { - "Command": "Get-MgGroupOnenoteNotebookSectionGroup", - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", - "Method": "GET", - "Module": "Notes", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false - } + "List1" ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphSectionGroup1", - "Variants": [ - "List1" - ] + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteNotebookSectionGroup", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -53752,17 +53486,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteOperation", "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -53795,18 +53529,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteOperation", "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -53839,18 +53573,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -53877,18 +53611,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -53915,17 +53649,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -53952,17 +53686,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -53989,96 +53723,96 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteRecentNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOnenoteRecentNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Groups" }, { - "Command": "Get-MgGroupOnenoteRecentNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOnenoteRecentNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Groups" }, { - "Command": "Get-MgGroupOnenoteResource", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteResource", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteResourceContent", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -54105,18 +53839,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteResourceContent", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -54143,18 +53877,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -54187,18 +53921,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -54231,17 +53965,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -54274,17 +54008,105 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSection", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false + } + ], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" + }, + { + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroup", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false + } + ], + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" + }, + { + "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -54317,106 +54139,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ - "Get", - "GetViaIdentity" - ] - }, - { - "Command": "Get-MgGroupOnenoteSectionGroup", - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", - "Method": "GET", - "Module": "Notes", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false - } + "List2", + "List3" ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphSectionGroup1", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false - } - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", - "Variants": [ - "List2", - "List3" - ] - }, - { "Command": "Get-MgGroupOnenoteSectionGroup", - "Uri": "/groups/{group-id}/onenote/sectionGroups", - "Method": "GET", - "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -54449,18 +54183,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -54493,18 +54227,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionGroupSection", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -54537,17 +54271,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionGroupSection", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -54580,17 +54314,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionPage", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -54617,17 +54351,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgGroupOnenoteSectionPage", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgGroupOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -54654,17 +54388,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgGroupOwner", "Uri": "/groups/{group-id}/owners", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOwner", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -54703,17 +54437,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupOwner", "Uri": "/groups/{group-id}/owners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOwner", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -54752,17 +54486,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupOwnerByRef", "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOwnerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -54801,17 +54535,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupOwnerByRef", "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupOwnerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -54850,30 +54584,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Get-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPermissionGrant", "Permissions": [ { "Name": "Group.Read.All", @@ -54900,17 +54634,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Get-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPermissionGrant", "Permissions": [ { "Name": "Group.Read.All", @@ -54937,183 +54671,183 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Get-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "Get-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhoto", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "Get-MgGroupPhoto", "Uri": "/groups/{group-id}/photos", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhoto", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "Get-MgGroupPhoto", "Uri": "/groups/{group-id}/photos", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhoto", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "Get-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhoto", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "Get-MgGroupPhotoContent", "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhotoContent", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupPhotoContent", "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupPhotoContent", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupPlanner", "Uri": "/groups/{group-id}/planner", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlanner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerGroup", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlanner", "Uri": "/groups/{group-id}/planner", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlanner", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerGroup1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerGroup1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlan", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlan", "Uri": "/groups/{group-id}/planner/plans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -55140,17 +54874,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlan", "Uri": "/groups/{group-id}/planner/plans", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -55177,104 +54911,104 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlan", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlan", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanBucket", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanBucket", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanBucket", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanBucket", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlanDetails1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlanDetails", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanTask", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgGroupPlannerPlanTask", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgGroupPlannerPlanTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgGroupRejectedSender", "Uri": "/groups/{group-id}/rejectedSenders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupRejectedSender", "Permissions": [ { "Name": "Group.Read.All", @@ -55289,17 +55023,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupRejectedSender", "Uri": "/groups/{group-id}/rejectedSenders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupRejectedSender", "Permissions": [ { "Name": "Group.Read.All", @@ -55314,17 +55048,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupRejectedSenderByRef", "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupRejectedSenderByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -55339,17 +55073,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupRejectedSenderByRef", "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupRejectedSenderByRef", "Permissions": [ { "Name": "Group.Read.All", @@ -55364,17 +55098,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupSetting", "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupSetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -55395,18 +55129,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Groups" }, { - "Command": "Get-MgGroupSetting", "Uri": "/groups/{group-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupSetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -55427,103 +55161,103 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Groups" }, { - "Command": "Get-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgGroupSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgGroupSite", "Uri": "/groups/{group-id}/sites", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgGroupSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgGroupSite", "Uri": "/groups/{group-id}/sites", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgGroupSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgGroupSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgGroupTeam", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeam", + "Module": "Teams" }, { - "Command": "Get-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgGroupTeam", "Permissions": { "Name": "Group.Read.All", "Description": "Read all groups", "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "Get-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThread", "Permissions": [ { "Name": "Group.Read.All", @@ -55538,18 +55272,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "Get-MgGroupThread", "Uri": "/groups/{group-id}/threads", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThread", "Permissions": [ { "Name": "Group.Read.All", @@ -55564,17 +55298,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "Get-MgGroupThread", "Uri": "/groups/{group-id}/threads", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThread", "Permissions": [ { "Name": "Group.Read.All", @@ -55589,17 +55323,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "Get-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThread", "Permissions": [ { "Name": "Group.Read.All", @@ -55614,18 +55348,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -55640,20 +55374,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -55668,17 +55402,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -55693,17 +55427,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPost", "Permissions": [ { "Name": "Group.Read.All", @@ -55718,33 +55452,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostAttachment", "Permissions": [ { "Name": "Group.Read.All", @@ -55759,17 +55493,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostAttachment", "Permissions": [ { "Name": "Group.Read.All", @@ -55784,205 +55518,205 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMention", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMention", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMember", "Uri": "/groups/{group-id}/transitiveMembers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56021,17 +55755,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMember", "Uri": "/groups/{group-id}/transitiveMembers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56070,17 +55804,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List3" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberByRef", "Uri": "/groups/{group-id}/transitiveMembers/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56119,17 +55853,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberByRef", "Uri": "/groups/{group-id}/transitiveMembers/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56168,17 +55902,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberOf", "Uri": "/groups/{group-id}/transitiveMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56199,17 +55933,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberOf", "Uri": "/groups/{group-id}/transitiveMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56230,17 +55964,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List2" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberOfByRef", "Uri": "/groups/{group-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56261,17 +55995,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupTransitiveMemberOfByRef", "Uri": "/groups/{group-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgGroupTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -56292,48 +56026,48 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List2" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Get-MgGroupUserOwnedObject", "Uri": "/groups/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Get-MgGroupUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "Permissions": { "Name": "Policy.Read.ConditionalAccess", "Description": "Read your organization's conditional access policies", "FullDescription": "Allows the app to read your organization's conditional access policies on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", "Permissions": [ { "Name": "Policy.Read.ConditionalAccess", @@ -56348,296 +56082,296 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessNamedLocation", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityConditionalAccessPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInsight", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceInsight", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInsight", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceInsight", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstance", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDefinition", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition1", + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityProvider", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -56652,18 +56386,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityProvider", "Uri": "/identityProviders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityProvider", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -56678,17 +56412,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityProvider", "Uri": "/identityProviders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityProvider", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -56703,17 +56437,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityProvider", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -56728,18 +56462,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityUserFlow", "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityUserFlow", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -56754,18 +56488,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIdentityUserFlow", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgIdentityUserFlow", "Uri": "/identity/userFlows", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgIdentityUserFlow", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -56780,78 +56514,78 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIdentityUserFlow", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtection", "Uri": "/informationProtection", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtection", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtection", "Uri": "/informationProtection", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInformationProtection1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtection1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlocker", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphBitlocker", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlocker", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphBitlocker", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [ { "Name": "BitLockerKey.Read.All", @@ -56866,17 +56600,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [ { "Name": "BitLockerKey.Read.All", @@ -56891,234 +56625,234 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionPolicy", "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionPolicyLabel", "Permissions": { "Name": "InformationProtectionPolicy.Read", "Description": "Read user sensitivity labels and label policies.", "FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionLabel", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionPolicyLabel", "Permissions": { "Name": "InformationProtectionPolicy.Read", "Description": "Read user sensitivity labels and label policies.", "FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionLabel", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionSensitivityPolicySetting", "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionSensitivityPolicySetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -57145,18 +56879,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -57183,17 +56917,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -57220,17 +56954,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -57257,18 +56991,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrantDelta", "Uri": "/oauth2PermissionGrants/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrantDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -57289,17 +57023,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOauth2PermissionGrantDelta", "Uri": "/oauth2PermissionGrants/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOauth2PermissionGrantDelta", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -57320,17 +57054,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57345,18 +57079,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57371,143 +57105,141 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeClientConfigurationAssignment", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments/{officeClientConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeClientConfigurationAssignment", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeClientConfigurationPolicyPayload", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/policyPayload", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfigurationPolicyPayload", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeClientConfigurationUserPreferencePayload", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/userPreferencePayload", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeClientConfigurationUserPreferencePayload", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOfficeConfiguration", "Uri": "/officeConfiguration", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgOfficeConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeConfiguration", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphOfficeConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgOnPremisePublishingProfile", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfile", "Uri": "/onPremisesPublishingProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgent", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroup", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Get", "Get1", @@ -57515,327 +57247,329 @@ "GetViaIdentity", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroup", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "List", "List1", "List2" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnector", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnector", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConnector", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnector", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnector", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConnector", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorGroupApplication", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorGroupApplication", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApplication", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorGroupApplicationByRef", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorGroupApplicationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorGroupMember", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorGroupMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConnector", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfileConnectorMemberOf", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfileConnectorMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResource", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResource", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "Get-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57850,18 +57584,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOrganization1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganization", "Uri": "/organization", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57906,17 +57640,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOrganization1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganization", "Uri": "/organization", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57961,17 +57695,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOrganization", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57986,18 +57720,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOrganization", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationBranding", "Permissions": [ { "Name": "Organization.Read.All", @@ -58024,18 +57758,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBranding1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOrganizationalBranding1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationBranding", "Permissions": [ { "Name": "Organization.Read.All", @@ -58062,44 +57796,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBranding", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOrganizationalBranding", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationById", "Uri": "/organization/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationById", "Uri": "/organization/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "Permissions": [ { "Name": "Organization.Read.All", @@ -58114,17 +57848,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", "Permissions": [ { "Name": "Organization.Read.All", @@ -58139,17 +57873,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationByRef", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationByRef", "Permissions": [ { "Name": "Organization.Read.All", @@ -58164,17 +57898,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationByRef", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationByRef", "Permissions": [ { "Name": "Organization.Read.All", @@ -58189,140 +57923,140 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationMemberGroup", "Uri": "/organization/{organization-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationMemberGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationMemberGroup", "Uri": "/organization/{organization-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationMemberGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationMemberObject", "Uri": "/organization/{organization-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationMemberObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationMemberObject", "Uri": "/organization/{organization-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationMemberObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationSetting", "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOrganizationSettings", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationSettingItemInsight", "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationSettingItemInsight", "Permissions": [ { "Name": "User.Read.All", @@ -58337,153 +58071,153 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInsightsSettings", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationSettingPersonInsight", "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationSettingPersonInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInsightsSettings", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationSettingProfileCardProperty", "Uri": "/organization/{organization-id}/settings/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationSettingProfileCardProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProfileCardProperty", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationSettingProfileCardProperty", "Uri": "/organization/{organization-id}/settings/profileCardProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationSettingProfileCardProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProfileCardProperty", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgOrganizationUserOwnedObject", "Uri": "/organization/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgOrganizationUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgPlace", "Permissions": { "Name": "Place.Read.All", "Description": "Read all company places", "FullDescription": "Allows the app to read your company's places (conference rooms and room lists) for calendar events and other applications, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlace1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlace1", + "Module": "Calendar" }, { - "Command": "Get-MgPlace", "Uri": "/places", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgPlace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlace1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlace1", + "Module": "Calendar" }, { - "Command": "Get-MgPlace", "Uri": "/places", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgPlace", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlace", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlace", + "Module": "Calendar" }, { - "Command": "Get-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgPlace", "Permissions": { "Name": "Place.Read.All", "Description": "Read all company places", "FullDescription": "Allows the app to read your company's places (conference rooms and room lists) for calendar events and other applications, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlace", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlace", + "Module": "Calendar" }, { - "Command": "Get-MgPlanner", "Uri": "/planner", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlanner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlanner1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphPlanner1", + "Module": "Planner" }, { - "Command": "Get-MgPlanner", "Uri": "/planner", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlanner", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlanner", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphPlanner", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58510,18 +58244,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucket", "Uri": "/planner/buckets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58548,17 +58282,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucket", "Uri": "/planner/buckets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58585,17 +58319,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58622,18 +58356,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucketTask", "Uri": "/planner/buckets/{plannerBucket-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucketTask", "Permissions": [ { "Name": "Group.Read.All", @@ -58660,17 +58394,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerBucketTask", "Uri": "/planner/buckets/{plannerBucket-id}/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerBucketTask", "Permissions": [ { "Name": "Group.Read.All", @@ -58697,17 +58431,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -58734,18 +58468,55 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { + "Uri": "/planner/plans", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgPlannerPlan", + "Permissions": [ + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true + }, + { + "Name": "Tasks.Read", + "Description": "Read your tasks and task lists", + "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", + "IsAdmin": false + }, + { + "Name": "Tasks.ReadWrite", + "Description": "Create, read, update, and delete your tasks and task lists", + "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", + "IsAdmin": false + } + ], + "Variants": [ + "List1" + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" + }, + { "Uri": "/planner/plans", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -58772,54 +58543,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ - "List1" - ] - }, - { - "Command": "Get-MgPlannerPlan", - "Uri": "/planner/plans", - "Method": "GET", - "Module": "Planner", - "Permissions": [ - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true - }, - { - "Name": "Tasks.Read", - "Description": "Read your tasks and task lists", - "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", - "IsAdmin": false - }, - { - "Name": "Tasks.ReadWrite", - "Description": "Create, read, update, and delete your tasks and task lists", - "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", - "IsAdmin": false - } + "List" ], - "ApiVersion": "v1.0", "OutputType": "IMicrosoftGraphPlannerPlan", - "Variants": [ - "List" - ] + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -58846,18 +58580,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanBucket", "Uri": "/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58884,17 +58618,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanBucket", "Uri": "/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanBucket", "Permissions": [ { "Name": "Group.Read.All", @@ -58921,17 +58655,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanDetail", "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanDetail", "Permissions": [ { "Name": "Group.Read.All", @@ -58958,18 +58692,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlanDetails1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanDetail", "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanDetail", "Permissions": [ { "Name": "Group.Read.All", @@ -58996,18 +58730,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlanDetails", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanTask", "Uri": "/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59034,17 +58768,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerPlanTask", "Uri": "/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerPlanTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59071,17 +58805,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRoster", "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRoster", "Permissions": [ { "Name": "Tasks.Read", @@ -59096,30 +58830,30 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRoster", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRoster", "Uri": "/planner/rosters", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRoster", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRoster", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRosterMember", "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRosterMember", "Permissions": [ { "Name": "Tasks.Read", @@ -59134,18 +58868,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRosterMember", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRosterMember", "Uri": "/planner/rosters/{plannerRoster-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRosterMember", "Permissions": [ { "Name": "Tasks.Read", @@ -59160,17 +58894,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRosterMember", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRosterPlan", "Uri": "/planner/rosters/{plannerRoster-id}/plans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRosterPlan", "Permissions": [ { "Name": "Tasks.Read", @@ -59185,17 +58919,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerRosterPlanByRef", "Uri": "/planner/rosters/{plannerRoster-id}/plans/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerRosterPlanByRef", "Permissions": [ { "Name": "Tasks.Read", @@ -59210,17 +58944,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Get-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59247,18 +58981,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTask", "Uri": "/planner/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59285,17 +59019,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTask", "Uri": "/planner/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59322,17 +59056,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -59359,18 +59093,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59397,18 +59131,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59435,18 +59169,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59473,18 +59207,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59511,18 +59245,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskDetail", "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskDetail", "Permissions": [ { "Name": "Group.Read.All", @@ -59549,18 +59283,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskDetails1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTaskDetails1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskDetail", "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskDetail", "Permissions": [ { "Name": "Group.Read.All", @@ -59587,18 +59321,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTaskDetails", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59625,18 +59359,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat1", + "Module": "Planner" }, { - "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [ { "Name": "Group.Read.All", @@ -59663,18 +59397,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", + "Module": "Planner" }, { - "Command": "Get-MgPolicyAccessReviewPolicy", "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAccessReviewPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59689,17 +59423,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59714,18 +59448,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59740,17 +59474,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59765,17 +59499,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59790,18 +59524,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAdminConsentRequestPolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -59828,17 +59562,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAdminConsentRequestPolicy", "Permissions": [ { "Name": "Directory.Read.All", @@ -59865,17 +59599,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAppManagementPolicy", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59890,18 +59624,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAppManagementPolicy", "Uri": "/policies/appManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59916,17 +59650,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAppManagementPolicyApplyTo", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAppManagementPolicyApplyTo", "Permissions": [ { "Name": "Policy.Read.All", @@ -59941,17 +59675,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAppManagementPolicyApplyToByRef", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAppManagementPolicyApplyToByRef", "Permissions": [ { "Name": "Policy.Read.All", @@ -59966,17 +59700,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthenticationFlowPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -59991,17 +59725,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthenticationFlowPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60016,64 +59750,64 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationMethod", "Description": "Read and write your authentication method policies ", "FullDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationMethod", "Description": "Read and write your authentication method policies ", "FullDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthorizationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAuthorizationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthorizationPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60088,17 +59822,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAuthorizationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthorizationPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60113,59 +59847,59 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthorizationPolicy1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphAuthorizationPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyB2CAuthenticationMethodPolicy", "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyB2CAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyClaimMappingPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60180,18 +59914,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyClaimMappingPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60206,17 +59940,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyClaimMappingPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60231,17 +59965,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyClaimMappingPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60256,18 +59990,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyDefaultAppManagementPolicy", "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyDefaultAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60282,149 +60016,149 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyDirectoryRoleAccessReviewPolicy", "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyDirectoryRoleAccessReviewPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60439,18 +60173,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60465,17 +60199,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60490,17 +60224,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60515,52 +60249,52 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": { "Name": "Policy.Read.All", "Description": "Read your organization's policies", "FullDescription": "Allows the app to read your organization's policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyMobileAppManagementPolicy", "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyMobileAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60575,18 +60309,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyMobileAppManagementPolicy", "Uri": "/policies/mobileAppManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyMobileAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60601,17 +60335,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyMobileDeviceManagementPolicy", "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyMobileDeviceManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60626,18 +60360,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyMobileDeviceManagementPolicy", "Uri": "/policies/mobileDeviceManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyMobileDeviceManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -60652,17 +60386,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicy", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -60677,18 +60411,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicy", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -60703,17 +60437,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicy", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -60728,17 +60462,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicy", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -60753,31 +60487,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Permissions": [ { "Name": "Directory.Read.All", @@ -60792,17 +60526,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Permissions": [ { "Name": "Directory.Read.All", @@ -60817,43 +60551,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyExclude", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Permissions": [ { "Name": "Directory.Read.All", @@ -60868,17 +60602,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Permissions": [ { "Name": "Directory.Read.All", @@ -60893,30 +60627,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyPermissionGrantPolicyInclude", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicy", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicy", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -60949,18 +60683,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicy", "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicy", "Permissions": [ { "Name": "PrivilegedAccess.ReadWrite.AzureAD", @@ -60999,17 +60733,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -61042,18 +60776,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyAssignment", "Permissions": [ { "Name": "PrivilegedAccess.ReadWrite.AzureAD", @@ -61092,43 +60826,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicy", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -61161,18 +60895,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -61205,17 +60939,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyRule", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -61248,18 +60982,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyRoleManagementPolicyRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyRoleManagementPolicyRule", "Permissions": [ { "Name": "RoleManagement.Read.All", @@ -61292,92 +61026,92 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicy", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicy", "Uri": "/policies/servicePrincipalCreationPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicyExclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicyExclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicyInclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyServicePrincipalCreationPolicyInclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyServicePrincipalCreationPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenIssuancePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61392,18 +61126,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenIssuancePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61418,17 +61152,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenIssuancePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61443,17 +61177,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenIssuancePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61468,18 +61202,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenLifetimePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61494,18 +61228,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenLifetimePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61520,17 +61254,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenLifetimePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61545,17 +61279,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgPolicyTokenLifetimePolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -61570,42 +61304,42 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgPrint", "Uri": "/print", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrint1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphPrint1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrint", "Uri": "/print", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrint", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphPrint", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -61620,18 +61354,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintConnector", "Uri": "/print/connectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -61646,17 +61380,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintConnector", "Uri": "/print/connectors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -61671,17 +61405,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -61696,18 +61430,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintOperation", "Permissions": [ { "Name": "Printer.Create", @@ -61728,42 +61462,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintOperation", "Uri": "/print/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintOperation", "Uri": "/print/operations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintOperation", "Permissions": [ { "Name": "Printer.Create", @@ -61784,18 +61518,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -61834,18 +61568,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrinter1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinter", "Uri": "/print/printers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -61866,17 +61600,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrinter1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinter", "Uri": "/print/printers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -61897,17 +61631,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrinter", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -61946,18 +61680,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinter", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterCapability", "Uri": "/print/printers/{printer-id}/getCapabilities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterCapability", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -61978,18 +61712,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterCapabilities1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinterCapabilities1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterConnector", "Uri": "/print/printers/{printer-id}/connectors", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -62004,17 +61738,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterConnector", "Uri": "/print/printers/{printer-id}/connectors", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterConnector", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -62029,17 +61763,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterConnectorByRef", "Uri": "/print/printers/{printer-id}/connectors/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterConnectorByRef", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -62054,17 +61788,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterConnectorByRef", "Uri": "/print/printers/{printer-id}/connectors/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterConnectorByRef", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -62079,32 +61813,32 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShare", "Uri": "/print/printers/{printer-id}/share", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShare", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShare", "Uri": "/print/printers/{printer-id}/shares", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62125,18 +61859,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "List1", "List2" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShare", "Uri": "/print/printers/{printer-id}/shares", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62157,78 +61891,78 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareAllowedGroup", "Uri": "/print/printerShares/{printerShare-id}/allowedGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareAllowedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareAllowedGroupByRef", "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareAllowedGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareAllowedUser", "Uri": "/print/printerShares/{printerShare-id}/allowedUsers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareAllowedUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareAllowedUserByRef", "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareAllowedUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/share/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/shares/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62249,17 +61983,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/shares/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterShareByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62280,56 +62014,56 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterSharePrinter", "Uri": "/print/printerShares/{printerShare-id}/printer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterSharePrinter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinter1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterSharePrinterByRef", "Uri": "/print/printerShares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterSharePrinterByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterSharePrinterCapability", "Uri": "/print/printerShares/{printerShare-id}/printer/getCapabilities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterSharePrinterCapability", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterCapabilities1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinterCapabilities1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62350,18 +62084,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62382,17 +62116,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62413,17 +62147,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62444,182 +62178,182 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTriggerDefinition", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTriggerDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTriggerDefinition", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTriggerDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintReport", "Uri": "/print/reports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphReportRoot", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphReportRoot", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintService", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintService1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintService", "Uri": "/print/services", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintService", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintService1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintService", "Uri": "/print/services", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintService", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintService", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintService", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintService", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62640,18 +62374,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShare", "Uri": "/print/shares", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62672,17 +62406,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShare", "Uri": "/print/shares", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62703,17 +62437,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShare", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62734,18 +62468,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedGroup", "Uri": "/print/shares/{printerShare-id}/allowedGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedGroup", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62760,17 +62494,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedGroup", "Uri": "/print/shares/{printerShare-id}/allowedGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedGroup", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62785,17 +62519,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedGroupByRef", "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedGroupByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62810,17 +62544,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedGroupByRef", "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedGroupByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62835,17 +62569,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedUser", "Uri": "/print/shares/{printerShare-id}/allowedUsers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedUser", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62860,17 +62594,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedUser", "Uri": "/print/shares/{printerShare-id}/allowedUsers", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedUser", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62885,17 +62619,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedUserByRef", "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedUserByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62910,17 +62644,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintShareAllowedUserByRef", "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintShareAllowedUserByRef", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -62935,17 +62669,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintSharePrinter", "Uri": "/print/shares/{printerShare-id}/printer", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintSharePrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62966,18 +62700,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrinter1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintSharePrinter", "Uri": "/print/shares/{printerShare-id}/printer", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintSharePrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -62998,18 +62732,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinter", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintSharePrinterByRef", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -63030,18 +62764,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintSharePrinterByRef", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -63062,363 +62796,363 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintSharePrinterCapability", "Uri": "/print/shares/{printerShare-id}/printer/getCapabilities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintSharePrinterCapability", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterCapabilities1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrinterCapabilities1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskTrigger", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskTrigger", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger1", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskTrigger", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskTrigger", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger", + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CloudPrint", + "Command": "Get-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Get-MgPrivilegedAccess", "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccess", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedAccess", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccess", "Uri": "/privilegedAccess", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccess", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedAccess", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessResource", "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceResource", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessResource", "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceResource", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleAssignment", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleAssignment", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleAssignmentRequest", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleAssignmentRequest", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleDefinition", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleDefinition", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleSetting", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedAccessRoleSetting", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedAccessRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedApproval", "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedApproval", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -63433,18 +63167,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedApproval", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedApproval", "Uri": "/privilegedApproval", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedApproval", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -63459,151 +63193,151 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedApproval", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedApprovalRequest", "Uri": "/privilegedApproval/{privilegedApproval-id}/request", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedApprovalRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedApprovalRequestByRef", "Uri": "/privilegedApproval/{privilegedApproval-id}/request/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedApprovalRequestByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedApprovalRoleInfo", "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedApprovalRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedOperationEvent", "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedOperationEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedOperationEvent", "Uri": "/privilegedOperationEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedOperationEvent", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRole", "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRole", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRole", "Uri": "/privilegedRoles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRole", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleAssignmentByRef", "Uri": "/privilegedRoles/{privilegedRole-id}/assignments/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleAssignmentByRef", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleAssignmentRequest", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -63624,128 +63358,128 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleAssignmentRequestRoleInfo", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleAssignmentRequestRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleAssignmentRoleInfo", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleAssignmentRoleInfo", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleRoleAssignment", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleRoleAssignment", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleRoleAssignment", "Uri": "/privilegedRoleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleRoleAssignment", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleSetting", "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleSetting", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", + "Module": "Identity.Governance" }, { - "Command": "Get-MgPrivilegedRoleSummary", "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgPrivilegedRoleSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgram", "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgram", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProgram", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgram", "Uri": "/programs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgram", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -63760,32 +63494,32 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProgram", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgramControl", "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgramControl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProgramControl", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgramControl", "Uri": "/programControls", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgramControl", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -63800,44 +63534,44 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphProgramControl", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgramControlProgram", "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgramControlProgram", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProgram", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgramControlType", "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgramControlType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProgramControlType", + "Module": "Identity.Governance" }, { - "Command": "Get-MgProgramControlType", "Uri": "/programControlTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgProgramControlType", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -63852,1808 +63586,1831 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProgramControlType", + "Module": "Identity.Governance" }, { - "Command": "Get-MgReportApplicationSign", "Uri": "/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportApplicationSign", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", + "Module": "Reports" }, { - "Command": "Get-MgReportApplicationSign", "Uri": "/reports/applicationSignInDetailedSummary", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportApplicationSign", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", + "Module": "Reports" }, { - "Command": "Get-MgReportAttackSimulationRepeatOffender", "Uri": "/reports/getAttackSimulationRepeatOffenders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAttackSimulationRepeatOffender", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender", + "Module": "Reports" }, { - "Command": "Get-MgReportAttackSimulationTrainingUserCoverage", "Uri": "/reports/getAttackSimulationTrainingUserCoverage", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAttackSimulationTrainingUserCoverage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage", + "Module": "Reports" }, { - "Command": "Get-MgReportAttackSimulationUserCoverage", "Uri": "/reports/getAttackSimulationSimulationUserCoverage", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAttackSimulationUserCoverage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage", + "Module": "Reports" }, { - "Command": "Get-MgReportAuthenticationMethod", "Uri": "/reports/authenticationMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAuthenticationMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot", + "Module": "Reports" }, { - "Command": "Get-MgReportAzureAdApplicationSign", - "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')", + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", + "Permissions": [], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphUserRegistrationDetails", + "Module": "Reports" + }, + { + "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", "Permissions": [], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphUserRegistrationDetails", + "Module": "Reports" + }, + { + "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInSummary", + "Method": "GET", + "Command": "Get-MgReportAzureAdApplicationSign", + "Permissions": [], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApplicationSignInSummary", + "Module": "Reports" }, { - "Command": "Get-MgReportAzureAdFeatureUsage", "Uri": "/reports/getAzureADFeatureUsage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAzureAdFeatureUsage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAzureAdFeatureUsage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAzureAdFeatureUsage", + "Module": "Reports" }, { - "Command": "Get-MgReportAzureAdLicenseUsage", "Uri": "/reports/getAzureADLicenseUsage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAzureAdLicenseUsage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAzureAdLicenseUsage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAzureAdLicenseUsage", + "Module": "Reports" }, { - "Command": "Get-MgReportAzureAdUserFeatureUsage", "Uri": "/reports/getAzureADUserFeatureUsage", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportAzureAdUserFeatureUsage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAzureAdUserFeatureUsage", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphAzureAdUserFeatureUsage", + "Module": "Reports" }, { - "Command": "Get-MgReportCredentialUsageSummary", "Uri": "/reports/getCredentialUsageSummary(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportCredentialUsageSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUsageSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCredentialUsageSummary", + "Module": "Reports" }, { - "Command": "Get-MgReportCredentialUserRegistrationCount", "Uri": "/reports/getCredentialUserRegistrationCount", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportCredentialUserRegistrationCount", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationCount", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationCount", + "Module": "Reports" }, { - "Command": "Get-MgReportCredentialUserRegistrationDetail", "Uri": "/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportCredentialUserRegistrationDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", + "Module": "Reports" }, { - "Command": "Get-MgReportCredentialUserRegistrationDetail", "Uri": "/reports/credentialUserRegistrationDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportCredentialUserRegistrationDetail", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsage", "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsage", "Uri": "/reports/dailyPrintUsageByPrinter", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsage", "Uri": "/reports/dailyPrintUsageByPrinter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsage", "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsageSummaryByPrinter", "Uri": "/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsageSummaryByPrinter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsageSummaryByPrinter", "Uri": "/reports/dailyPrintUsageSummariesByPrinter", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsageSummaryByPrinter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsageSummaryByUser", "Uri": "/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsageSummaryByUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByUser1", + "Module": "Reports" }, { - "Command": "Get-MgReportDailyPrintUsageSummaryByUser", "Uri": "/reports/dailyPrintUsageSummariesByUser", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDailyPrintUsageSummaryByUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByUser1", + "Module": "Reports" }, { - "Command": "Get-MgReportDeviceConfigurationDeviceActivity", "Uri": "/reports/deviceConfigurationDeviceActivity", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDeviceConfigurationDeviceActivity", "Permissions": { "Name": "DeviceManagementConfiguration.Read.All", "Description": "Read Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Device1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportDeviceConfigurationDeviceActivity", "Uri": "/reports/deviceConfigurationDeviceActivity", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDeviceConfigurationDeviceActivity", "Permissions": { "Name": "DeviceManagementConfiguration.Read.All", "Description": "Read Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Device" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportDeviceConfigurationUserActivity", "Uri": "/reports/deviceConfigurationUserActivity", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDeviceConfigurationUserActivity", "Permissions": { "Name": "DeviceManagementConfiguration.Read.All", "Description": "Read Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Device1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportDeviceConfigurationUserActivity", "Uri": "/reports/deviceConfigurationUserActivity", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportDeviceConfigurationUserActivity", "Permissions": { "Name": "DeviceManagementConfiguration.Read.All", "Description": "Read Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Device" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityCount", "Uri": "/reports/getEmailActivityCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityCount", "Uri": "/reports/getEmailActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityUserCount", "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityUserCount", "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityUserDetail", "Uri": "/reports/getEmailActivityUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailActivityUserDetail", "Uri": "/reports/getEmailActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailActivityUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageAppUserCount", "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageAppUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageAppUserCount", "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageAppUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageUserCount", "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageUserCount", "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageUserDetail", "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageUserDetail", "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageVersionUserCount", "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageVersionUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportEmailAppUsageVersionUserCount", "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportEmailAppUsageVersionUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportGroupArchivedPrintJob", "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Method": "GET", - "Module": "Reports", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob1", + "Method": "GET", + "Command": "Get-MgReportGroupArchivedPrintJob", + "Permissions": [], "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob1", + "Module": "Reports" }, { - "Command": "Get-MgReportGroupArchivedPrintJob", "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportGroupArchivedPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob", + "Module": "Reports" }, { - "Command": "Get-MgReportM365AppPlatformUserCount", "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportM365AppPlatformUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportM365AppUserCount", "Uri": "/reports/getM365AppUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportM365AppUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportM365AppUserDetail", "Uri": "/reports/getM365AppUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportM365AppUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageDetail", "Uri": "/reports/getMailboxUsageDetail(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageDetail", "Uri": "/reports/getMailboxUsageDetail(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageMailboxCount", "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageMailboxCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageMailboxCount", "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageMailboxCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageStorage", "Uri": "/reports/getMailboxUsageStorage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageStorage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMailboxUsageStorage", "Uri": "/reports/getMailboxUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMailboxUsageStorage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentAbandonmentDetail", "Uri": "/reports/managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentAbandonmentDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Managed", "ManagedViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentAbandonmentSummary", "Uri": "/reports/managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentAbandonmentSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Managed", "ManagedViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", "Uri": "/reports/managedDeviceEnrollmentFailureDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Managed", "Managed1", "ManagedViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", "Uri": "/reports/managedDeviceEnrollmentFailureDetails", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Managed2", "Managed3", "ManagedViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentFailureTrend", "Uri": "/reports/managedDeviceEnrollmentFailureTrends", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentFailureTrend", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Managed" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentTopFailures", "Uri": "/reports/managedDeviceEnrollmentTopFailures", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentTopFailures", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Top", "Top1", "TopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportManagedDeviceEnrollmentTopFailures", "Uri": "/reports/managedDeviceEnrollmentTopFailures", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportManagedDeviceEnrollmentTopFailures", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Top2", "Top3", "TopViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsage", "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsage", "Uri": "/reports/monthlyPrintUsageByPrinter", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsage", "Uri": "/reports/monthlyPrintUsageByPrinter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsage", "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsage", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsageSummaryByPrinter", "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsageSummaryByPrinter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsageSummaryByPrinter", "Uri": "/reports/monthlyPrintUsageSummariesByPrinter", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsageSummaryByPrinter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter1", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsageSummaryByUser", "Uri": "/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsageSummaryByUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByUser1", + "Module": "Reports" }, { - "Command": "Get-MgReportMonthlyPrintUsageSummaryByUser", "Uri": "/reports/monthlyPrintUsageSummariesByUser", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportMonthlyPrintUsageSummaryByUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPrintUsageByUser1", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationCount", "Uri": "/reports/getOffice365ActivationCounts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationCount", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationCount", "Uri": "/reports/getOffice365ActivationCounts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationCount", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationUserCount", "Uri": "/reports/getOffice365ActivationsUserCounts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationUserCount", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationUserCount", "Uri": "/reports/getOffice365ActivationsUserCounts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationUserCount", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationUserDetail", "Uri": "/reports/getOffice365ActivationsUserDetail", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationUserDetail", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActivationUserDetail", "Uri": "/reports/getOffice365ActivationsUserDetail", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActivationUserDetail", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActiveUserCount", "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActiveUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ActiveUserCounts", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365ActiveUserCounts", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActiveUserCount", "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActiveUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActiveUserDetail", "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActiveUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ActiveUserDetail", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphOffice365ActiveUserDetail", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ActiveUserDetail", "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ActiveUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityCount", "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityCount", "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityDetail", "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityDetail", "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityFileCount", "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityFileCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityFileCount", "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityFileCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityGroupCount", "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityGroupCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityGroupCount", "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityGroupCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityStorage", "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityStorage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365GroupActivityStorage", "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365GroupActivityStorage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ServiceUserCount", "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ServiceUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ServicesUserCounts", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOffice365ServicesUserCounts", + "Module": "Reports" }, { - "Command": "Get-MgReportOffice365ServiceUserCount", "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOffice365ServiceUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityFileCount", "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityFileCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityFileCount", "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityFileCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityUserCount", "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityUserCount", "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityUserDetail", "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveActivityUserDetail", "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveActivityUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageAccountCount", "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageAccountCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageAccountCount", "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageAccountCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageAccountDetail", "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageAccountDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageAccountDetail", "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageAccountDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageFileCount", "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageFileCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageFileCount", "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageFileCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageStorage", "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageStorage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportOneDriveUsageStorage", "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportOneDriveUsageStorage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportPrinterArchivedPrintJob", "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportPrinterArchivedPrintJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob1", + "Module": "Reports" }, { - "Command": "Get-MgReportPrinterArchivedPrintJob", "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportPrinterArchivedPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob", + "Module": "Reports" }, { - "Command": "Get-MgReportRelyingPartyDetailedSummary", "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportRelyingPartyDetailedSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary", + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityFileCount", "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityFileCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityFileCount", "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityFileCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityPage", "Uri": "/reports/getSharePointActivityPages(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityPage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityPage", "Uri": "/reports/getSharePointActivityPages(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityPage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityUserCount", "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityUserCount", "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityUserDetail", "Uri": "/reports/getSharePointActivityUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointActivityUserDetail", "Uri": "/reports/getSharePointActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointActivityUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageDetail", "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageDetail", "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageFileCount", "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageFileCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageFileCount", "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageFileCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgReportSharePointSiteUsagePage", - "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", - "Method": "GET", - "Module": "Reports", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": null, - "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsagePage", "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsagePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageSiteCount", - "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", + "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsagePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageSiteCount", "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageSiteCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageStorage", - "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", + "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageSiteCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSharePointSiteUsageStorage", "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageStorage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSkype", - "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})", + "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSharePointSiteUsageStorage", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Get1", + "GetViaIdentity1" + ], "OutputType": null, + "Module": "Reports" + }, + { + "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgReportSkype", + "Permissions": [], "Variants": [ "Get", "Get1", @@ -65662,10 +65419,10 @@ "Get12", "Get13", "Get14", + "Get15", + "Get16", "Get2", "Get3", - "Get32", - "Get33", "Get4", "Get5", "Get6", @@ -65679,29 +65436,27 @@ "GetViaIdentity12", "GetViaIdentity13", "GetViaIdentity14", + "GetViaIdentity15", + "GetViaIdentity16", "GetViaIdentity2", "GetViaIdentity3", - "GetViaIdentity32", - "GetViaIdentity33", "GetViaIdentity4", "GetViaIdentity5", "GetViaIdentity6", "GetViaIdentity7", "GetViaIdentity8", "GetViaIdentity9" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportSkype", "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportSkype", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Get15", - "Get16", "Get17", "Get18", "Get19", @@ -65717,8 +65472,8 @@ "Get29", "Get30", "Get31", - "GetViaIdentity15", - "GetViaIdentity16", + "Get32", + "Get33", "GetViaIdentity17", "GetViaIdentity18", "GetViaIdentity19", @@ -65733,628 +65488,632 @@ "GetViaIdentity28", "GetViaIdentity29", "GetViaIdentity30", - "GetViaIdentity31" - ] + "GetViaIdentity31", + "GetViaIdentity32", + "GetViaIdentity33" + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageDistributionTotalUserCount", "Uri": "/reports/getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageDistributionTotalUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageTotalUserCount", "Uri": "/reports/getTeamsDeviceUsageTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageTotalUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageUserCount", "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageUserCount", "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageUserDetail", "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamDeviceUsageUserDetail", "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamDeviceUsageUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityCount", "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityCount", "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityDistributionTotalUserCount", "Uri": "/reports/getTeamsUserActivityDistributionTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityDistributionTotalUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityDistributionUserCount", "Uri": "/reports/getTeamsUserActivityDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityDistributionUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityTotalCount", "Uri": "/reports/getTeamsUserActivityTotalCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityTotalCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityTotalUserCount", "Uri": "/reports/getTeamsUserActivityTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityTotalUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityUserCount", "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityUserCount", "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityUserDetail", "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportTeamUserActivityUserDetail", "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportTeamUserActivityUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportUserArchivedPrintJob", "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportUserArchivedPrintJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob1", + "Module": "Reports" }, { - "Command": "Get-MgReportUserArchivedPrintJob", "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportUserArchivedPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphArchivedPrintJob", + "Module": "Reports" }, { - "Command": "Get-MgReportUserCredentialUsageDetail", "Uri": "/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportUserCredentialUsageDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", + "Module": "Reports" }, { - "Command": "Get-MgReportUserCredentialUsageDetail", "Uri": "/reports/userCredentialUsageDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportUserCredentialUsageDetail", "Permissions": { "Name": "Reports.Read.All", "Description": "Read all usage reports", "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityCount", "Uri": "/reports/getYammerActivityCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityCount", "Uri": "/reports/getYammerActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityUserCount", "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityUserCount", "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityUserDetail", "Uri": "/reports/getYammerActivityUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerActivityUserDetail", "Uri": "/reports/getYammerActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerActivityUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageUserCount", "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageUserCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageUserCount", "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageUserCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageUserDetail", "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageUserDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerDeviceUsageUserDetail", "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerDeviceUsageUserDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityCount", "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityCount", "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityDetail", "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityDetail", "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityGroupCount", "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityGroupCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgReportYammerGroupActivityGroupCount", "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Reports", + "Command": "Get-MgReportYammerGroupActivityGroupCount", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Get-MgRiskDetection", "Uri": "/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskDetection", "Permissions": { "Name": "IdentityRiskEvent.Read.All", "Description": "Read identity risk event information", "FullDescription": "Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRiskDetection", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRiskDetection", "Uri": "/riskDetections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskDetection", "Permissions": { "Name": "IdentityRiskEvent.Read.All", "Description": "Read identity risk event information", "FullDescription": "Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRiskDetection", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRiskyUser", "Uri": "/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskyUser", "Permissions": { "Name": "IdentityRiskyUser.Read.All", "Description": "Read identity risky user information", "FullDescription": "Allows the app to read identity risky user information for all users in your organization on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUser", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRiskyUser", "Uri": "/riskyUsers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskyUser", "Permissions": { "Name": "IdentityRiskyUser.Read.All", "Description": "Read identity risky user information", "FullDescription": "Allows the app to read identity risky user information for all users in your organization on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUser", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRiskyUserHistory", "Uri": "/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskyUserHistory", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -66369,18 +66128,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRiskyUserHistory", "Uri": "/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgRiskyUserHistory", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -66395,17 +66154,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgRoleManagement", "Uri": "/roleManagement", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagement", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -66420,17 +66179,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleManagement1", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRoleManagement1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagement", "Uri": "/roleManagement", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagement", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -66445,92 +66204,92 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleManagement", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphRoleManagement", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPc", "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplicationMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcResourceNamespace", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcResourceNamespace", "Uri": "/roleManagement/cloudPC/resourceNamespaces", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignment", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -66557,18 +66316,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignment", "Uri": "/roleManagement/cloudPC/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -66595,116 +66354,116 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentAppScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentAppScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentDirectoryScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentPrincipal", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentRoleDefinition", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleDefinition", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -66773,18 +66532,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleDefinition", "Uri": "/roleManagement/cloudPC/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -66853,42 +66612,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagement", "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagement", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -66903,80 +66662,80 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplicationMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementResourceNamespace", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementResourceNamespace", "Uri": "/roleManagement/deviceManagement/resourceNamespaces", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignment", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -67003,18 +66762,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignment", "Uri": "/roleManagement/deviceManagement/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -67041,116 +66800,116 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentPrincipal", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -67219,18 +66978,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -67299,129 +67058,129 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplication", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplication1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -67454,18 +67213,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -67498,17 +67257,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -67541,17 +67300,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -67584,250 +67343,250 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -67854,18 +67613,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -67892,43 +67651,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -67961,18 +67720,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -68005,43 +67764,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -68074,18 +67833,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -68118,173 +67877,173 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -68317,18 +68076,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -68361,60 +68120,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions", - "Method": "GET", - "Module": "DeviceManagement.Enrolment", - "Permissions": [ - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - }, - { - "Name": "RoleManagement.Read.Directory", - "Description": "Read directory RBAC settings", - "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.", - "IsAdmin": true - }, - { - "Name": "RoleManagement.ReadWrite.Directory", - "Description": "Read and write directory RBAC settings", - "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "IsAdmin": true - } - ], "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", - "Variants": [ - "List1" - ] - }, - { - "Command": "Get-MgRoleManagementDirectoryRoleDefinition", - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinition", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -68447,68 +68163,111 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", + "Variants": [ + "List1" + ], "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" + }, + { + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleDefinition", + "Permissions": [ + { + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + }, + { + "Name": "RoleManagement.Read.Directory", + "Description": "Read directory RBAC settings", + "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.", + "IsAdmin": true + }, + { + "Name": "RoleManagement.ReadWrite.Directory", + "Description": "Read and write directory RBAC settings", + "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", + "IsAdmin": true + } + ], "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68541,18 +68300,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68585,17 +68344,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68628,18 +68387,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68672,17 +68431,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68715,18 +68474,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -68759,234 +68518,234 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplication", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphRbacApplication1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -69031,18 +68790,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -69087,17 +68846,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -69142,17 +68901,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -69197,533 +68956,533 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69792,18 +69551,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69872,17 +69631,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69951,17 +69710,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70030,273 +69789,273 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Get-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "SchemaExtensions", + "Command": "Get-MgSchemaExtension", "Permissions": [ { "Name": "Application.Read.All", @@ -70311,18 +70070,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "Get-MgSchemaExtension", "Uri": "/schemaExtensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "SchemaExtensions", + "Command": "Get-MgSchemaExtension", "Permissions": [ { "Name": "Application.Read.All", @@ -70337,17 +70096,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "Get-MgSchemaExtension", "Uri": "/schemaExtensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "SchemaExtensions", + "Command": "Get-MgSchemaExtension", "Permissions": [ { "Name": "Application.Read.All", @@ -70362,17 +70121,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "Get-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "SchemaExtensions", + "Command": "Get-MgSchemaExtension", "Permissions": [ { "Name": "Application.Read.All", @@ -70387,142 +70146,142 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "Get-MgSearchAcronym", "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchAcronym", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSearchAcronym", + "Module": "Search" }, { - "Command": "Get-MgSearchAcronym", "Uri": "/search/acronyms", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchAcronym", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSearchAcronym", + "Module": "Search" }, { - "Command": "Get-MgSearchBookmark", "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchBookmark", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSearchBookmark", + "Module": "Search" }, { - "Command": "Get-MgSearchBookmark", "Uri": "/search/bookmarks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchBookmark", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSearchBookmark", + "Module": "Search" }, { - "Command": "Get-MgSearchEntity", "Uri": "/search", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchEntity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchEntity1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphSearchEntity1", + "Module": "Search" }, { - "Command": "Get-MgSearchEntity", "Uri": "/search", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchEntity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Get-MgSearchQna", "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchQna", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSearchQna", + "Module": "Search" }, { - "Command": "Get-MgSearchQna", "Uri": "/search/qnas", + "ApiVersion": "beta", "Method": "GET", - "Module": "Search", + "Command": "Get-MgSearchQna", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSearchQna", + "Module": "Search" }, { - "Command": "Get-MgSecurityAction", "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityAction", + "Module": "Security" }, { - "Command": "Get-MgSecurityAction", "Uri": "/security/securityActions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityAction", + "Module": "Security" }, { - "Command": "Get-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAlert", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70537,18 +70296,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "Get-MgSecurityAlert", "Uri": "/security/alerts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAlert", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70563,17 +70322,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "Get-MgSecurityAlert", "Uri": "/security/alerts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAlert", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70588,17 +70347,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "Get-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAlert", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70613,248 +70372,248 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "Get-MgSecurityAttackSimulation", "Uri": "/security/attackSimulation/simulations/{simulation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAttackSimulation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulation", "Variants": [ "Get", "Get1", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSimulation", + "Module": "Security" }, { - "Command": "Get-MgSecurityAttackSimulation", "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityAttackSimulation", "Permissions": { "Name": "SecurityEvents.Read.All", "Description": "Read your organization’s security events", "FullDescription": "Allows the app to read your organization’s security events on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSimulation", + "Module": "Security" }, { - "Command": "Get-MgSecurityCloudAppSecurityProfile", "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityCloudAppSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityCloudAppSecurityProfile", "Uri": "/security/cloudAppSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityCloudAppSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityDomainSecurityProfile", "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityDomainSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDomainSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityDomainSecurityProfile", "Uri": "/security/domainSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityDomainSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDomainSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityFileSecurityProfile", "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityFileSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFileSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityFileSecurityProfile", "Uri": "/security/fileSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityFileSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphFileSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityHostSecurityProfile", "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityHostSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphHostSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityHostSecurityProfile", "Uri": "/security/hostSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityHostSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphHostSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityIncident", "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIncident", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIncident", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIncident", + "Module": "Security" }, { - "Command": "Get-MgSecurityIncident", "Uri": "/security/incidents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIncident", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIncident", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIncident", + "Module": "Security" }, { - "Command": "Get-MgSecurityIncidentAlert", "Uri": "/security/incidents/{incident-id}/alerts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIncidentAlert", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlertV2", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAlertV2", + "Module": "Security" }, { - "Command": "Get-MgSecurityIncidentAlertByRef", "Uri": "/security/incidents/{incident-id}/alerts/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIncidentAlertByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Get-MgSecurityIPSecurityProfile", "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIPSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphIPSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityIPSecurityProfile", "Uri": "/security/ipSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityIPSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphIPSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityProviderTenantSetting", "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityProviderTenantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProviderTenantSetting", + "Module": "Security" }, { - "Command": "Get-MgSecurityProviderTenantSetting", "Uri": "/security/providerTenantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityProviderTenantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProviderTenantSetting", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScore", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70869,18 +70628,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScore", "Uri": "/security/secureScores", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScore", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70895,17 +70654,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScore", "Uri": "/security/secureScores", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScore", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70920,17 +70679,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScore", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70945,18 +70704,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScoreControlProfile", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70971,18 +70730,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScoreControlProfile", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -70997,17 +70756,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScoreControlProfile", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -71022,17 +70781,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "Get-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecuritySecureScoreControlProfile", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -71047,78 +70806,78 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityTiIndicator", "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityTiIndicator", "Permissions": { "Name": "ThreatIndicators.ReadWrite.OwnedBy", "Description": "Manage threat indicators this app creates or owns", "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTiIndicator", + "Module": "Security" }, { - "Command": "Get-MgSecurityTiIndicator", "Uri": "/security/tiIndicators", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityTiIndicator", "Permissions": { "Name": "ThreatIndicators.ReadWrite.OwnedBy", "Description": "Manage threat indicators this app creates or owns", "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTiIndicator", + "Module": "Security" }, { - "Command": "Get-MgSecurityUserSecurityProfile", "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityUserSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgSecurityUserSecurityProfile", "Uri": "/security/userSecurityProfiles", + "ApiVersion": "beta", "Method": "GET", - "Module": "Security", + "Command": "Get-MgSecurityUserSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserSecurityProfile", + "Module": "Security" }, { - "Command": "Get-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipal", "Permissions": [ { "Name": "Application.Read.All", @@ -71151,18 +70910,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipal", "Uri": "/servicePrincipals", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipal", "Permissions": [ { "Name": "Application.Read.All", @@ -71195,17 +70954,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipal", "Uri": "/servicePrincipals", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipal", "Permissions": [ { "Name": "Application.Read.All", @@ -71238,17 +70997,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipal", "Permissions": [ { "Name": "Application.Read.All", @@ -71281,55 +71040,55 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", "Variants": [ "Get2", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppManagementPolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppManagementPolicy", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppManagementPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppManagementPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "Application.Read.All", @@ -71362,17 +71121,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "Application.Read.All", @@ -71405,43 +71164,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignedTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "Application.Read.All", @@ -71474,17 +71233,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "Application.Read.All", @@ -71517,56 +71276,56 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalById", "Uri": "/servicePrincipals/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalById", "Uri": "/servicePrincipals/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get3", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalClaimMappingPolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalClaimMappingPolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -71587,17 +71346,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalClaimMappingPolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalClaimMappingPolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -71618,17 +71377,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -71649,17 +71408,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -71680,17 +71439,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalCreatedObject", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalCreatedObject", "Permissions": [ { "Name": "Application.Read.All", @@ -71723,17 +71482,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalCreatedObject", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalCreatedObject", "Permissions": [ { "Name": "Application.Read.All", @@ -71766,17 +71525,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalCreatedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalCreatedObjectByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -71809,17 +71568,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalCreatedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalCreatedObjectByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -71852,30 +71611,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [ { "Name": "Application.Read.All", @@ -71890,17 +71649,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [ { "Name": "Application.Read.All", @@ -71915,30 +71674,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelta", "Uri": "/servicePrincipals/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelta", "Permissions": [ { "Name": "Application.Read.All", @@ -71971,17 +71730,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal1", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalDelta", "Uri": "/servicePrincipals/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalDelta", "Permissions": [ { "Name": "Application.Read.All", @@ -72014,92 +71773,92 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalFederatedIdentityCredential", "Uri": "/servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalFederatedIdentityCredential", "Uri": "/servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -72120,17 +71879,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -72151,17 +71910,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -72182,17 +71941,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -72213,180 +71972,42 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalLicenseDetail", "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalLicenseDetail", "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "List" - ] - }, - { - "Command": "Get-MgServicePrincipalMemberGroup", - "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups", - "Method": "POST", - "Module": "Applications", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read applications", - "FullDescription": "Allows the app to read applications and service principals on your behalf.", - "IsAdmin": true - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", - "IsAdmin": true - }, - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - } ], - "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ] + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalMemberGroup", "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups", - "Method": "POST", - "Module": "Applications", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read applications", - "FullDescription": "Allows the app to read applications and service principals on your behalf.", - "IsAdmin": true - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", - "IsAdmin": true - }, - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - } - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "Get1", - "GetExpanded1", - "GetViaIdentity1", - "GetViaIdentityExpanded1" - ] - }, - { - "Command": "Get-MgServicePrincipalMemberObject", - "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", - "Method": "POST", - "Module": "Applications", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read applications", - "FullDescription": "Allows the app to read applications and service principals on your behalf.", - "IsAdmin": true - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", - "IsAdmin": true - }, - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - } - ], "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ] - }, - { - "Command": "Get-MgServicePrincipalMemberObject", - "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalMemberGroup", "Permissions": [ { "Name": "Application.Read.All", @@ -72419,20 +72040,66 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], "OutputType": null, + "Module": "Applications" + }, + { + "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "Get-MgServicePrincipalMemberGroup", + "Permissions": [ + { + "Name": "Application.Read.All", + "Description": "Read applications", + "FullDescription": "Allows the app to read applications and service principals on your behalf.", + "IsAdmin": true + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", + "IsAdmin": true + }, + { + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + } + ], "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalMemberOf", - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", - "Method": "GET", - "Module": "Applications", + "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "ApiVersion": "beta", + "Method": "POST", + "Command": "Get-MgServicePrincipalMemberObject", "Permissions": [ { "Name": "Application.Read.All", @@ -72465,17 +72132,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List" - ] + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalMemberOf", - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", - "Method": "GET", - "Module": "Applications", + "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "Get-MgServicePrincipalMemberObject", "Permissions": [ { "Name": "Application.Read.All", @@ -72508,17 +72178,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List1" - ] + "Get1", + "GetExpanded1", + "GetViaIdentity1", + "GetViaIdentityExpanded1" + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalMemberOfByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalMemberOf", "Permissions": [ { "Name": "Application.Read.All", @@ -72551,17 +72224,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalMemberOfByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalMemberOf", "Permissions": [ { "Name": "Application.Read.All", @@ -72594,22 +72267,28 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOauth2PermissionGrant", - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalMemberOfByRef", "Permissions": [ { - "Name": "DelegatedPermissionGrant.ReadWrite.All", - "Description": "Manage all delegated permission grants", - "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on your behalf. ", + "Name": "Application.Read.All", + "Description": "Read applications", + "FullDescription": "Allows the app to read applications and service principals on your behalf.", + "IsAdmin": true + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, { @@ -72631,22 +72310,28 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOauth2PermissionGrant", - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalMemberOfByRef", "Permissions": [ { - "Name": "DelegatedPermissionGrant.ReadWrite.All", - "Description": "Manage all delegated permission grants", - "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on your behalf. ", + "Name": "Application.Read.All", + "Description": "Read applications", + "FullDescription": "Allows the app to read applications and service principals on your behalf.", + "IsAdmin": true + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, { @@ -72668,17 +72353,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOauth2PermissionGrantByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -72705,17 +72390,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOauth2PermissionGrantByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -72742,28 +72427,59 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnedObject", - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects", + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOauth2PermissionGrantByRef", "Permissions": [ { - "Name": "Application.Read.All", - "Description": "Read applications", - "FullDescription": "Allows the app to read applications and service principals on your behalf.", + "Name": "DelegatedPermissionGrant.ReadWrite.All", + "Description": "Manage all delegated permission grants", + "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on your behalf. ", "IsAdmin": true }, { - "Name": "Application.ReadWrite.All", - "Description": "Read and write applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + } + ], + "Variants": [ + "List" + ], + "OutputType": null, + "Module": "Applications" + }, + { + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgServicePrincipalOauth2PermissionGrantByRef", + "Permissions": [ + { + "Name": "DelegatedPermissionGrant.ReadWrite.All", + "Description": "Manage all delegated permission grants", + "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on your behalf. ", "IsAdmin": true }, { @@ -72785,17 +72501,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List" - ] + "List1" + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnedObject", "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwnedObject", "Permissions": [ { "Name": "Application.Read.All", @@ -72828,17 +72544,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnedObjectByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwnedObject", "Permissions": [ { "Name": "Application.Read.All", @@ -72871,17 +72587,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ - "List" - ] + "List1" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwnedObjectByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -72914,17 +72630,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "List1" - ] + "List" + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwner", - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners", + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwnedObjectByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -72957,17 +72673,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List" - ] + "List1" + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwner", "Uri": "/servicePrincipals/{servicePrincipal-id}/owners", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwner", "Permissions": [ { "Name": "Application.Read.All", @@ -73000,17 +72716,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ - "List1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnerByRef", - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwner", "Permissions": [ { "Name": "Application.Read.All", @@ -73043,17 +72759,60 @@ "IsAdmin": true } ], + "Variants": [ + "List1" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" + }, + { + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", "ApiVersion": "beta", - "OutputType": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwnerByRef", + "Permissions": [ + { + "Name": "Application.Read.All", + "Description": "Read applications", + "FullDescription": "Allows the app to read applications and service principals on your behalf.", + "IsAdmin": true + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", + "IsAdmin": true + }, + { + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + } + ], "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalOwnerByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalOwnerByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -73086,17 +72845,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalPasswordSingleSignOnCredentials", "Uri": "/servicePrincipals/{servicePrincipal-id}/getPasswordSingleSignOnCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalPasswordSingleSignOnCredentials", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -73123,247 +72882,247 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronization", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronization", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationAccessToken", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationAccessToken", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Acquire", "AcquireExpanded", "AcquireViaIdentity", "AcquireViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationJobSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationJobSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationSchema", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationTemplate", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationTemplate", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationTemplate", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationTemplate", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationTemplateSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationTemplateSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationSchema", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenIssuancePolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenIssuancePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenIssuancePolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenIssuancePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenIssuancePolicyByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -73384,17 +73143,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenLifetimePolicy", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -73415,17 +73174,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenLifetimePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -73446,17 +73205,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTokenLifetimePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -73477,17 +73236,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTransitiveMemberOf", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTransitiveMemberOf", "Permissions": [ { "Name": "Application.Read.All", @@ -73520,17 +73279,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTransitiveMemberOf", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTransitiveMemberOf", "Permissions": [ { "Name": "Application.Read.All", @@ -73563,17 +73322,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTransitiveMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTransitiveMemberOfByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -73606,17 +73365,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalTransitiveMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgServicePrincipalTransitiveMemberOfByRef", "Permissions": [ { "Name": "Application.Read.All", @@ -73649,30 +73408,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Get-MgServicePrincipalUserOwnedObject", "Uri": "/servicePrincipals/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Get-MgServicePrincipalUserOwnedObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Get-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -73693,18 +73452,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -73725,18 +73484,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareDriveItemContent", "Permissions": [ { "Name": "Files.Read", @@ -73775,18 +73534,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareDriveItemContent", "Permissions": [ { "Name": "Files.Read", @@ -73825,695 +73584,693 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareItemContent", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareItemContent", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphList", + "Module": "Files" }, { - "Command": "Get-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphList1", + "Module": "Files" }, { - "Command": "Get-MgShareListActivity", "Uri": "/shares/{sharedDriveItem-id}/list/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Files" }, { - "Command": "Get-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListColumnSourceColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListColumnSourceColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseTypeByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeBaseTypeByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnPosition", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnPosition", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnPositionByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnPositionByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnSourceColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnSourceColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "Get-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "Get-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "Get-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "Get-MgShareListItemActivity", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat", + "Module": "Files" }, { - "Command": "Get-MgShareListItemActivity", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Files" }, { - "Command": "Get-MgShareListItemActivity", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat1", "Variants": [ "Get2", "Get3", @@ -74523,377 +74280,379 @@ "GetViaIdentity3", "GetViaIdentity4", "GetViaIdentity5" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat1", + "Module": "Files" }, { - "Command": "Get-MgShareListItemAnalytic", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemAnalytic", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics", + "Module": "Files" }, { - "Command": "Get-MgShareListItemAnalytic", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemAnalytic", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics1", + "Module": "Files" }, { - "Command": "Get-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareListItemDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "Get-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "Get-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "Get-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "Get-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgSharePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Files" }, { - "Command": "Get-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgSharePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Files" }, { - "Command": "Get-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareRootContent", "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareRootContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareRootContent", "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareRootContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -74914,42 +74673,42 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem", + "Module": "Files" }, { - "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSharedDriveItemSharedDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -74970,44 +74729,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem1", + "Module": "Files" }, { - "Command": "Get-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Files" }, { - "Command": "Get-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgShareSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Files" }, { - "Command": "Get-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -75022,18 +74781,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get5", "GetViaIdentity5" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSite", "Uri": "/sites", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -75048,17 +74807,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "List3" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSite", "Uri": "/sites", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -75073,17 +74832,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -75098,31 +74857,31 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Get2", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgSiteActivityByInterval", "Uri": "/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteActivityByInterval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat", + "Module": "Sites" }, { - "Command": "Get-MgSiteActivityByInterval", "Uri": "/sites/{site-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteActivityByInterval", "Permissions": [ { "Name": "Files.Read", @@ -75161,20 +74920,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat1", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat1", + "Module": "Sites" }, { - "Command": "Get-MgSiteAnalytic", "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteAnalytic", "Permissions": [ { "Name": "Files.Read", @@ -75213,18 +74972,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics", + "Module": "Sites" }, { - "Command": "Get-MgSiteAnalytic", "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteAnalytic", "Permissions": [ { "Name": "Files.Read", @@ -75263,18 +75022,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics1", + "Module": "Sites" }, { - "Command": "Get-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteAnalyticByRef", "Permissions": [ { "Name": "Files.Read", @@ -75313,18 +75072,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteAnalyticByRef", "Permissions": [ { "Name": "Files.Read", @@ -75363,70 +75122,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteApplicableContentType", "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteApplicableContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteApplicableContentType", "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteApplicableContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteByPath", "Uri": "/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteByPath", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSiteByPath", "Uri": "/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteByPath", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Get3", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75453,18 +75212,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumn", "Uri": "/sites/{site-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75491,17 +75250,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumn", "Uri": "/sites/{site-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75528,17 +75287,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75565,70 +75324,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumnSourceColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumnSourceColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75655,18 +75414,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75693,17 +75452,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ - "List1" - ] + "List" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75730,17 +75489,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ - "List" - ] + "List1" + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75767,118 +75526,131 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgSiteContentTypeBaseTypeCompatibleHubContentType", + "Permissions": [], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75905,18 +75677,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75943,17 +75715,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -75980,17 +75752,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76017,168 +75789,206 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnPosition", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnPosition", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnSourceColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnSourceColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgSiteContentTypeCompatibleHubContentType", + "Permissions": [ + { + "Name": "Sites.FullControl.All", + "Description": "Have full control of all your site collections", + "FullDescription": "Allow the application to have full control of all site collections on your behalf.", + "IsAdmin": true + }, + { + "Name": "Sites.Manage.All", + "Description": "Create, edit, and delete items and lists in all your site collections", + "FullDescription": "Allow the application to create or delete document libraries and lists in all site collections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Sites.Read.All", + "Description": "Read items in all site collections", + "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf", + "IsAdmin": false + }, + { + "Name": "Sites.ReadWrite.All", + "Description": "Edit or delete items in all site collections", + "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", + "IsAdmin": false + } + ], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteDelta", "Uri": "/sites/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteDelta", "Permissions": [ { "Name": "Sites.Read.All", @@ -76193,17 +76003,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteDrive", "Permissions": [ { "Name": "Files.Read", @@ -76242,20 +76052,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Sites" }, { - "Command": "Get-MgSiteDrive", "Uri": "/sites/{site-id}/drives", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteDrive", "Permissions": [ { "Name": "Files.Read", @@ -76294,17 +76104,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Sites" }, { - "Command": "Get-MgSiteDrive", "Uri": "/sites/{site-id}/drives", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteDrive", "Permissions": [ { "Name": "Files.Read", @@ -76343,17 +76153,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Sites" }, { - "Command": "Get-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteDrive", "Permissions": [ { "Name": "Files.Read", @@ -76392,68 +76202,68 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Sites" }, { - "Command": "Get-MgSiteExternalColumn", "Uri": "/sites/{site-id}/externalColumns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteExternalColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteExternalColumn", "Uri": "/sites/{site-id}/externalColumns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteExternalColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteExternalColumnByRef", "Uri": "/sites/{site-id}/externalColumns/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteExternalColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteExternalColumnByRef", "Uri": "/sites/{site-id}/externalColumns/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteExternalColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteList", "Permissions": [ { "Name": "Sites.Read.All", @@ -76468,42 +76278,42 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphList", + "Module": "Sites" }, { - "Command": "Get-MgSiteList", "Uri": "/sites/{site-id}/lists", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphList", + "Module": "Sites" }, { - "Command": "Get-MgSiteList", "Uri": "/sites/{site-id}/lists", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphList1", + "Module": "Sites" }, { - "Command": "Get-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteList", "Permissions": [ { "Name": "Sites.Read.All", @@ -76518,18 +76328,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphList1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListActivity", "Uri": "/sites/{site-id}/lists/{list-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListActivity", "Permissions": [ { "Name": "Files.Read", @@ -76568,17 +76378,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76605,18 +76415,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76643,17 +76453,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76680,17 +76490,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76717,70 +76527,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumnSourceColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumnSourceColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76807,18 +76617,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76845,17 +76655,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76882,17 +76692,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -76919,118 +76729,131 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ - "Get1", - "GetViaIdentity1" - ] + "Get", + "GetViaIdentity" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Get", - "GetViaIdentity" - ] + "Get1", + "GetViaIdentity1" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgSiteListContentTypeBaseTypeCompatibleHubContentType", + "Permissions": [], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -77057,18 +76880,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -77095,17 +76918,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -77132,17 +76955,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -77169,194 +76992,232 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnPosition", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnPosition", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnPosition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnSourceColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnSourceColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnSourceColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgSiteListContentTypeCompatibleHubContentType", + "Permissions": [ + { + "Name": "Sites.FullControl.All", + "Description": "Have full control of all your site collections", + "FullDescription": "Allow the application to have full control of all site collections on your behalf.", + "IsAdmin": true + }, + { + "Name": "Sites.Manage.All", + "Description": "Create, edit, and delete items and lists in all your site collections", + "FullDescription": "Allow the application to create or delete document libraries and lists in all site collections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Sites.Read.All", + "Description": "Read items in all site collections", + "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf", + "IsAdmin": false + }, + { + "Name": "Sites.ReadWrite.All", + "Description": "Edit or delete items in all site collections", + "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", + "IsAdmin": false + } + ], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "Get-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Sites" }, { - "Command": "Get-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItem", "Permissions": [ { "Name": "Sites.Read.All", @@ -77371,18 +77232,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItem", "Permissions": [ { "Name": "Sites.Read.All", @@ -77397,17 +77258,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItem", "Permissions": [ { "Name": "Sites.Read.All", @@ -77422,17 +77283,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItem", "Permissions": [ { "Name": "Sites.Read.All", @@ -77447,31 +77308,31 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemActivityByInterval", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemActivityByInterval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemActivityByInterval", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemActivityByInterval", "Permissions": [ { "Name": "Files.Read", @@ -77510,17 +77371,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityOld", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemActivityByInterval", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemActivityByInterval", "Permissions": [ { "Name": "Files.Read", @@ -77559,20 +77420,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat1", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphItemActivityStat1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemAnalytic", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemAnalytic", "Permissions": [ { "Name": "Files.Read", @@ -77611,18 +77472,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemAnalytic", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemAnalytic", "Permissions": [ { "Name": "Files.Read", @@ -77661,18 +77522,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphItemAnalytics1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemAnalyticByRef", "Permissions": [ { "Name": "Files.Read", @@ -77711,18 +77572,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemAnalyticByRef", "Permissions": [ { "Name": "Files.Read", @@ -77761,18 +77622,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemDriveItem", "Permissions": [ { "Name": "Files.Read", @@ -77811,18 +77672,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemDriveItem", "Permissions": [ { "Name": "Files.Read", @@ -77861,70 +77722,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemDriveItemContent", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemDriveItemContent", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.Read.All", @@ -77939,18 +77800,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.Read.All", @@ -77965,17 +77826,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.Read.All", @@ -77990,17 +77851,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.Read.All", @@ -78015,94 +77876,119 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteListSubscription", - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRichLongRunningOperation", + "Module": "Sites" }, { - "Command": "Get-MgSiteListSubscription", - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphRichLongRunningOperation", + "Module": "Sites" }, { + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgSiteListSubscription", + "Permissions": [], + "Variants": [ + "Get", + "GetViaIdentity" + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Sites" + }, + { "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListSubscription", "Permissions": [], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", + "Method": "GET", + "Command": "Get-MgSiteListSubscription", + "Permissions": [], "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Sites" }, { - "Command": "Get-MgSiteListSubscription", "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Sites" }, { - "Command": "Get-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -78135,61 +78021,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Get1", "GetViaIdentity1" - ] - }, - { - "Command": "Get-MgSiteOnenoteNotebook", - "Uri": "/sites/{site-id}/onenote/notebooks", - "Method": "GET", - "Module": "Notes", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false - } ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphNotebook1", - "Variants": [ - "List1" - ] + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -78222,17 +78065,60 @@ "IsAdmin": false } ], + "Variants": [ + "List1" + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" + }, + { + "Uri": "/sites/{site-id}/onenote/notebooks", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebook", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false + } + ], "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -78265,48 +78151,48 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Sites" }, { - "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Sites" }, { - "Command": "Get-MgSiteOnenoteNotebookSection", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -78339,17 +78225,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebookSection", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -78382,17 +78268,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebookSectionGroup", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -78425,17 +78311,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteNotebookSectionGroup", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -78468,17 +78354,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteOperation", "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -78511,18 +78397,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteOperation", "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -78555,18 +78441,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -78593,18 +78479,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -78631,17 +78517,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -78668,17 +78554,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -78705,70 +78591,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteResource", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteResource", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteResourceContent", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -78795,18 +78681,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteResourceContent", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -78833,18 +78719,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -78877,18 +78763,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -78921,17 +78807,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -78964,17 +78850,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -79007,18 +78893,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -79051,18 +78937,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -79095,18 +78981,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -79139,18 +79025,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -79183,18 +79069,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroupSection", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -79227,17 +79113,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionGroupSection", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -79270,17 +79156,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionPage", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -79307,17 +79193,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgSiteOnenoteSectionPage", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgSiteOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -79344,17 +79230,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgSitePage", "Uri": "/sites/{site-id}/pages/{sitePage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePage", "Permissions": [ { "Name": "Sites.Read.All", @@ -79369,18 +79255,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSitePage", + "Module": "Sites" }, { - "Command": "Get-MgSitePage", "Uri": "/sites/{site-id}/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePage", "Permissions": [ { "Name": "Sites.Read.All", @@ -79395,93 +79281,93 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSitePage", + "Module": "Sites" }, { - "Command": "Get-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "Get-MgSitePermission", "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "Get-MgSitePermission", "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Sites" }, { - "Command": "Get-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Sites" }, { - "Command": "Get-MgSiteRecentNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteRecentNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Sites" }, { - "Command": "Get-MgSiteRecentNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteRecentNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStore", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79496,30 +79382,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTermStore", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStore", "Uri": "/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTermStore1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStore", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79534,20 +79420,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore1", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphTermStore1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroup", "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroup", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79562,18 +79448,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreGroup1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroup", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79588,20 +79474,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreGroup1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSet", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79616,51 +79502,49 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1", "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", @@ -79670,307 +79554,309 @@ "GetViaIdentity1", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetParentGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreGroup1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationFromTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationToTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTerm", "Permissions": [ { "Name": "TermStore.Read.All", @@ -79985,209 +79871,209 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreGroupSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreGroupSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSet", "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSet", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80202,20 +80088,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChild", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80230,23 +80116,21 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1", "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", @@ -80256,204 +80140,206 @@ "GetViaIdentity1", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationFromTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationToTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetParentGroup", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreGroup1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetParentGroupSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetParentGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetParentGroupSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetParentGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelation", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80468,136 +80354,136 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationFromTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationToTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTerm", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80612,20 +80498,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermChild", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80640,33 +80526,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelation", "Permissions": [ { "Name": "TermStore.Read.All", @@ -80681,153 +80567,153 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationFromTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationFromTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationToTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationToTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "Get-MgSiteTermStoreSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSiteTermStoreSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgSubscribedSku", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -80854,18 +80740,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgSubscribedSku", "Uri": "/subscribedSkus", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgSubscribedSku", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -80898,17 +80784,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgSubscribedSku", "Uri": "/subscribedSkus", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgSubscribedSku", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -80941,17 +80827,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgSubscribedSku", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -80978,81 +80864,81 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "ChangeNotifications", + "Command": "Get-MgSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "ChangeNotifications" }, { - "Command": "Get-MgSubscription", "Uri": "/subscriptions", + "ApiVersion": "beta", "Method": "GET", - "Module": "ChangeNotifications", + "Command": "Get-MgSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "ChangeNotifications" }, { - "Command": "Get-MgSubscription", "Uri": "/subscriptions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "ChangeNotifications", + "Command": "Get-MgSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "ChangeNotifications" }, { - "Command": "Get-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "ChangeNotifications", + "Command": "Get-MgSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "ChangeNotifications" }, { - "Command": "Get-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSubSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSubSite", "Uri": "/sites/{site-id}/sites", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSubSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -81067,17 +80953,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgSubSite", "Uri": "/sites/{site-id}/sites", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSubSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -81092,30 +80978,30 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "List2" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgSubSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Get4", "GetViaIdentity4" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeam", "Permissions": [ { "Name": "Directory.Read.All", @@ -81160,18 +81046,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeam", + "Module": "Teams" }, { - "Command": "Get-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeam", "Permissions": [ { "Name": "Directory.Read.All", @@ -81216,18 +81102,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -81272,18 +81158,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChannel", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannel", "Uri": "/teams/{team-id}/channels", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -81328,17 +81214,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChannel", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannel", "Uri": "/teams/{team-id}/channels", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -81383,17 +81269,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChannel1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -81438,18 +81324,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChannel1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelFileFolder", "Permissions": [ { "Name": "Files.Read.All", @@ -81476,18 +81362,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelFileFolder", "Permissions": [ { "Name": "Files.Read.All", @@ -81514,44 +81400,44 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelFileFolderContent", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelFileFolderContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelFileFolderContent", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelFileFolderContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -81590,18 +81476,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -81622,17 +81508,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -81653,17 +81539,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -81702,18 +81588,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessage", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81746,54 +81632,54 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessage", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessage", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessage", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81826,56 +81712,56 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageDelta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageDelta", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageDelta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageDelta", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81896,18 +81782,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81928,17 +81814,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81959,17 +81845,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageHostedContent", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -81990,18 +81876,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReply", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -82034,52 +81920,52 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReply", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReply", "Permissions": { "Name": "ChannelMessage.Read.All", "Description": "Read your channel messages", "FullDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReply", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -82112,18 +81998,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReplyDelta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReplyDelta", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -82156,18 +82042,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelMessageReplyDelta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelMessageReplyDelta", "Permissions": [ { "Name": "ChannelMessage.Read.All", @@ -82200,18 +82086,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.Read.All", @@ -82256,18 +82142,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.Read.All", @@ -82312,17 +82198,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.Read.All", @@ -82367,17 +82253,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.Read.All", @@ -82422,96 +82308,96 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTabTeamApp", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTabTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTabTeamApp", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTabTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.Read.All", @@ -82562,18 +82448,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.Read.All", @@ -82612,17 +82498,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.Read.All", @@ -82661,17 +82547,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.Read.All", @@ -82722,122 +82608,122 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppDefinition", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppDefinition", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition1", + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMember", "Permissions": [ { "Name": "TeamMember.Read.All", @@ -82852,18 +82738,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamMember", "Uri": "/teams/{team-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMember", "Permissions": [ { "Name": "TeamMember.Read.All", @@ -82878,17 +82764,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamMember", "Uri": "/teams/{team-id}/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMember", "Permissions": [ { "Name": "TeamMember.Read.All", @@ -82903,17 +82789,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMember", "Permissions": [ { "Name": "TeamMember.Read.All", @@ -82928,18 +82814,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamMessage", "Uri": "/teams/getAllMessages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMessage", "Permissions": [ { "Name": "Directory.Read.All", @@ -82984,17 +82870,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamMessage", "Uri": "/teams/getAllMessages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamMessage", "Permissions": [ { "Name": "Directory.Read.All", @@ -83039,104 +82925,104 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "Get-MgTeamOperation", "Uri": "/teams/{team-id}/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "Get-MgTeamOperation", "Uri": "/teams/{team-id}/operations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", + "Module": "Teams" }, { - "Command": "Get-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", + "Module": "Teams" }, { - "Command": "Get-MgTeamOwner", "Uri": "/teams/{team-id}/owners", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOwner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Teams" }, { - "Command": "Get-MgTeamOwnerByRef", "Uri": "/teams/{team-id}/owners/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamOwnerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamPermissionGrant", "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "Get-MgTeamPermissionGrant", "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPermissionGrant", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -83157,43 +83043,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "Get-MgTeamPhoto", "Uri": "/teams/{team-id}/photo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Teams" }, { - "Command": "Get-MgTeamPhotoContent", "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPhotoContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -83214,18 +83100,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChannel", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -83246,424 +83132,424 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChannel1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelFileFolderContent", "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelFileFolderContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelFileFolderContent", "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelFileFolderContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageDelta", "Uri": "/teams/{team-id}/primaryChannel/messages/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageDelta", "Uri": "/teams/{team-id}/primaryChannel/messages/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTabTeamApp", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTabTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTabTeamApp", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTabTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamSchedule", "Permissions": [ { "Name": "Group.Read.All", @@ -83690,56 +83576,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSchedule", + "Module": "Teams" }, { - "Command": "Get-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", - "Method": "GET", - "Module": "Teams", - "Permissions": [ - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true - }, - { - "Name": "Schedule.Read.All", - "Description": "Read your schedule items", - "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true - }, - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true - } - ], "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedule1", - "Variants": [ - "Get1", - "GetViaIdentity1" - ] - }, - { - "Command": "Get-MgTeamScheduleOfferShiftRequest", - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamSchedule", "Permissions": [ { "Name": "Group.Read.All", @@ -83766,18 +83614,56 @@ "IsAdmin": true } ], + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "OutputType": "IMicrosoftGraphSchedule1", + "Module": "Teams" + }, + { + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", + "Method": "GET", + "Command": "Get-MgTeamScheduleOfferShiftRequest", + "Permissions": [ + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true + }, + { + "Name": "Schedule.Read.All", + "Description": "Read your schedule items", + "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true + }, + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true + } + ], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOfferShiftRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -83792,17 +83678,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOfferShiftRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -83817,17 +83703,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOfferShiftRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -83854,18 +83740,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.Read.All", @@ -83892,18 +83778,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.Read.All", @@ -83930,17 +83816,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.Read.All", @@ -83967,17 +83853,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.Read.All", @@ -84004,18 +83890,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84042,18 +83928,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84080,17 +83966,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84117,17 +84003,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84154,18 +84040,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.Read.All", @@ -84192,18 +84078,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.Read.All", @@ -84230,17 +84116,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.Read.All", @@ -84267,17 +84153,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.Read.All", @@ -84304,18 +84190,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.Read.All", @@ -84342,18 +84228,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShift", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.Read.All", @@ -84380,17 +84266,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphShift", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.Read.All", @@ -84417,17 +84303,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphShift1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.Read.All", @@ -84454,31 +84340,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphShift1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84505,17 +84391,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84542,30 +84428,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeCard", "Permissions": [ { "Name": "Schedule.Read.All", @@ -84580,18 +84466,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeCard", "Permissions": [ { "Name": "Schedule.Read.All", @@ -84606,17 +84492,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.Read.All", @@ -84643,18 +84529,55 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTimeOff", + "Module": "Teams" }, { + "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgTeamScheduleTimeOff", + "Permissions": [ + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true + }, + { + "Name": "Schedule.Read.All", + "Description": "Read your schedule items", + "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true + }, + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true + } + ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphTimeOff", + "Module": "Teams" + }, + { "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.Read.All", @@ -84681,54 +84604,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", "Variants": [ - "List" - ] - }, - { - "Command": "Get-MgTeamScheduleTimeOff", - "Uri": "/teams/{team-id}/schedule/timesOff", - "Method": "GET", - "Module": "Teams", - "Permissions": [ - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true - }, - { - "Name": "Schedule.Read.All", - "Description": "Read your schedule items", - "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true - }, - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true - } + "List1" ], - "ApiVersion": "v1.0", "OutputType": "IMicrosoftGraphTimeOff1", - "Variants": [ - "List1" - ] + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.Read.All", @@ -84755,18 +84641,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOff1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.Read.All", @@ -84793,18 +84679,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.Read.All", @@ -84831,17 +84717,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.Read.All", @@ -84868,17 +84754,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.Read.All", @@ -84905,18 +84791,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84943,18 +84829,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -84981,17 +84867,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -85018,17 +84904,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.Read.All", @@ -85055,144 +84941,144 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest1", + "Module": "Teams" }, { - "Command": "Get-MgTeamTag", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTag", + "Module": "Teams" }, { - "Command": "Get-MgTeamTag", "Uri": "/teams/{team-id}/tags", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTag", + "Module": "Teams" }, { - "Command": "Get-MgTeamTagMember", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTagMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTagMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamTagMember", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTagMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTagMember", + "Module": "Teams" }, { - "Command": "Get-MgTeamTemplate", "Uri": "/teams/{team-id}/template", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamTemplate", "Uri": "/teams/{team-id}/template", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgTeamwork", "Uri": "/teamwork", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamwork", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamwork", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphTeamwork", + "Module": "Teams" }, { - "Command": "Get-MgTeamwork", "Uri": "/teamwork", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamwork", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamwork1", "Variants": [ "Get1" - ] + ], + "OutputType": "IMicrosoftGraphTeamwork1", + "Module": "Teams" }, { - "Command": "Get-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamworkWorkforceIntegration", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -85207,18 +85093,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration", + "Module": "Teams" }, { - "Command": "Get-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamworkWorkforceIntegration", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -85233,17 +85119,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration", + "Module": "Teams" }, { - "Command": "Get-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamworkWorkforceIntegration", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -85258,17 +85144,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration1", + "Module": "Teams" }, { - "Command": "Get-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgTeamworkWorkforceIntegration", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -85283,30 +85169,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration1", + "Module": "Teams" }, { - "Command": "Get-MgTrustFramework", "Uri": "/trustFramework", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFramework", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFramework", "Variants": [ "Get" - ] + ], + "OutputType": "IMicrosoftGraphTrustFramework", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkKeySet", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkKeySet", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -85321,18 +85207,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkKeySet", "Uri": "/trustFramework/keySets", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkKeySet", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -85347,17 +85233,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkKeySetActiveKey", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/getActiveKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkKeySetActiveKey", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -85372,18 +85258,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKey", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkPolicy", "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -85398,30 +85284,30 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkPolicy", "Uri": "/trustFramework/policies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkPolicy", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkPolicy", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgTrustFrameworkPolicyContent", "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgTrustFrameworkPolicyContent", "Permissions": [ { "Name": "Policy.Read.All", @@ -85436,18 +85322,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -85546,18 +85432,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users" }, { - "Command": "Get-MgUser", "Uri": "/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -85644,17 +85530,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users" }, { - "Command": "Get-MgUser", "Uri": "/users", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -85741,17 +85627,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users" }, { - "Command": "Get-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -85850,291 +85736,291 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users" }, { - "Command": "Get-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity1", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivity", "Uri": "/users/{user-id}/activities", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivity", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity1", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivity", "Uri": "/users/{user-id}/activities", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivity", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem1", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem1", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItemActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItemActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity1", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItemActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItemActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserActivityStatistics", "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserActivityStatistics", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphActivityStatistics", + "Module": "People" }, { - "Command": "Get-MgUserActivityStatistics", "Uri": "/users/{user-id}/analytics/activityStatistics", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserActivityStatistics", "Permissions": { "Name": "Analytics.Read", "Description": "Read your activity statistics", "FullDescription": "Allows the app to read your activity statistics, such as how much time you've spent on emails, in meetings, or in chat sessions.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphActivityStatistics", + "Module": "People" }, { - "Command": "Get-MgUserAgreementAcceptance", "Uri": "/users/{user-id}/agreementAcceptances", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgUserAgreementAcceptance", "Permissions": { "Name": "AgreementAcceptance.Read", "Description": "Read your terms of use acceptance statuses", "FullDescription": "Allows the app to read your terms of use acceptance statuses.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgUserAgreementAcceptance", "Uri": "/users/{user-id}/agreementAcceptances", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgUserAgreementAcceptance", "Permissions": { "Name": "AgreementAcceptance.Read", "Description": "Read your terms of use acceptance statuses", "FullDescription": "Allows the app to read your terms of use acceptance statuses.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "Get-MgUserAgreementAcceptanceByRef", "Uri": "/users/{user-id}/agreementAcceptances/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgUserAgreementAcceptanceByRef", "Permissions": { "Name": "AgreementAcceptance.Read", "Description": "Read your terms of use acceptance statuses", "FullDescription": "Allows the app to read your terms of use acceptance statuses.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgUserAgreementAcceptanceByRef", "Uri": "/users/{user-id}/agreementAcceptances/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Get-MgUserAgreementAcceptanceByRef", "Permissions": { "Name": "AgreementAcceptance.Read", "Description": "Read your terms of use acceptance statuses", "FullDescription": "Allows the app to read your terms of use acceptance statuses.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Get-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgUserAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -86161,17 +86047,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "Get-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -86198,30 +86084,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Applications", + "Command": "Get-MgUserAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "Get-MgUserAuthenticationEmailMethod", "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationEmailMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86248,18 +86134,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationEmailMethod", "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationEmailMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86286,17 +86172,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationFido2Method", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86323,92 +86209,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgUserAuthenticationFido2Method", - "Uri": "/users/{user-id}/authentication/fido2Methods", - "Method": "GET", - "Module": "Identity.SignIns", - "Permissions": [ - { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite", - "Description": "Read and write your authentication methods", - "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite.All", - "Description": "Read and write all users' authentication methods", - "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", - "Variants": [ - "List" - ] + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", - "Permissions": [ - { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite", - "Description": "Read and write your authentication methods", - "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite.All", - "Description": "Read and write all users' authentication methods", - "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true - } - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod1", - "Variants": [ - "List1" - ] - }, - { "Command": "Get-MgUserAuthenticationFido2Method", - "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", - "Method": "GET", - "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86435,18 +86247,92 @@ "IsAdmin": true } ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", + "Module": "Identity.SignIns" + }, + { + "Uri": "/users/{user-id}/authentication/fido2Methods", "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgUserAuthenticationFido2Method", + "Permissions": [ + { + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite", + "Description": "Read and write your authentication methods", + "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite.All", + "Description": "Read and write all users' authentication methods", + "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true + } + ], + "Variants": [ + "List1" + ], "OutputType": "IMicrosoftGraphFido2AuthenticationMethod1", + "Module": "Identity.SignIns" + }, + { + "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgUserAuthenticationFido2Method", + "Permissions": [ + { + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite", + "Description": "Read and write your authentication methods", + "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite.All", + "Description": "Read and write all users' authentication methods", + "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true + } + ], "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86473,18 +86359,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86511,17 +86397,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86548,17 +86434,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethod", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86585,18 +86471,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86623,18 +86509,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86661,17 +86547,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86698,17 +86584,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86735,74 +86621,74 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDevice1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationOperation", "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationOperation", "Permissions": { "Name": "UserAuthenticationMethod.Read.All", "Description": "Read all users' authentication methods", "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLongRunningOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationOperation", "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphLongRunningOperation", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86829,18 +86715,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86867,100 +86753,100 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPasswordMethod", "Uri": "/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPasswordMethod", "Permissions": { "Name": "UserAuthenticationMethod.Read.All", "Description": "Read all users' authentication methods", "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPasswordMethod", "Uri": "/users/{user-id}/authentication/passwordMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPasswordMethod", "Permissions": { "Name": "UserAuthenticationMethod.Read.All", "Description": "Read all users' authentication methods", "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPhoneMethod", "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPhoneMethod", "Permissions": { "Name": "UserAuthenticationMethod.Read.All", "Description": "Read all users' authentication methods", "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationPhoneMethod", "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationPhoneMethod", "Permissions": { "Name": "UserAuthenticationMethod.Read.All", "Description": "Read all users' authentication methods", "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -86987,18 +86873,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "Uri": "/users/{user-id}/authentication/softwareOathMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationSoftwareOathMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87025,17 +86911,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87062,18 +86948,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87100,17 +86986,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87137,18 +87023,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87175,17 +87061,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87212,17 +87098,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -87249,83 +87135,83 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDevice1", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserById", "Uri": "/users/getByIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserById", "Uri": "/users/getByIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserById", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserCalendar", "Uri": "/users/{user-id}/calendar", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Get2", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendar", "Uri": "/users/{user-id}/calendars", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendar", "Permissions": [ { "Name": "Calendars.Read", @@ -87346,17 +87232,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendar", "Uri": "/users/{user-id}/calendars", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendar", "Permissions": [ { "Name": "Calendars.Read", @@ -87377,30 +87263,30 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendar", "Uri": "/users/{user-id}/calendar", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarEvent", "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -87415,17 +87301,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarEvent", "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -87440,75 +87326,75 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarEventDelta", "Uri": "/users/{user-id}/calendar/events/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserCalendarEventDelta", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Delta", "Delta3", "DeltaViaIdentity", "DeltaViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserCalendarEventDelta", "Uri": "/users/{user-id}/calendar/events/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserCalendarEventDelta", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Delta1", "Delta2", "DeltaViaIdentity1", "DeltaViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroup", "Permissions": [ { "Name": "Calendars.Read", @@ -87523,17 +87409,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroup", "Permissions": [ { "Name": "Calendars.Read", @@ -87548,35 +87434,35 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarGroupCalendar", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroupCalendar", "Permissions": [ { "Name": "Calendars.Read", @@ -87597,17 +87483,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarGroupCalendar", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarGroupCalendar", "Permissions": [ { "Name": "Calendars.Read", @@ -87628,215 +87514,215 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarSchedule", "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserCalendarSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get3", "GetExpanded3", "GetViaIdentity3", "GetViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserCalendarSchedule", "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserCalendarSchedule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "Get3", "GetViaIdentity", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List", "List3" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1", "List2" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarView", "Uri": "/users/{user-id}/calendar/calendarView", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarView", "Permissions": [ { "Name": "Calendars.Read", @@ -87851,18 +87737,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserCalendarView", "Uri": "/users/{user-id}/calendar/calendarView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserCalendarView", "Permissions": [ { "Name": "Calendars.Read", @@ -87877,18 +87763,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserChat", "Permissions": [ { "Name": "Chat.Read", @@ -87909,18 +87795,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "Get-MgUserChat", "Uri": "/users/{user-id}/chats", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserChat", "Permissions": [ { "Name": "Chat.Read", @@ -87941,17 +87827,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "Get-MgUserChat", "Uri": "/users/{user-id}/chats", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserChat", "Permissions": [ { "Name": "Chat.Read", @@ -87972,17 +87858,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "Get-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserChat", "Permissions": [ { "Name": "Chat.Read", @@ -88003,18 +87889,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "Get-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88029,18 +87915,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContact", "Uri": "/users/{user-id}/contacts", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88055,17 +87941,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContact", "Uri": "/users/{user-id}/contacts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88080,17 +87966,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88105,18 +87991,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactDelta", "Uri": "/users/{user-id}/contacts/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88131,18 +88017,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactDelta", "Uri": "/users/{user-id}/contacts/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88157,68 +88043,68 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88233,18 +88119,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88259,17 +88145,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88284,17 +88170,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88309,31 +88195,31 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderChildFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88348,17 +88234,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderChildFolder", "Permissions": [ { "Name": "Contacts.Read", @@ -88373,56 +88259,56 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderChildFolderDelta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderChildFolderDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderChildFolderDelta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderChildFolderDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88437,18 +88323,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88463,17 +88349,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88488,17 +88374,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContact", "Permissions": [ { "Name": "Contacts.Read", @@ -88513,18 +88399,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactDelta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderContactDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88539,18 +88425,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderContactDelta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderContactDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88565,240 +88451,240 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactPhoto", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactPhoto", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactPhotoContent", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactPhotoContent", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactPhotoContent", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactPhotoContent", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderDelta", "Uri": "/users/{user-id}/contactFolders/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88813,18 +88699,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderDelta", "Uri": "/users/{user-id}/contactFolders/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserContactFolderDelta", "Permissions": [ { "Name": "Contacts.Read", @@ -88839,290 +88725,345 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactPhoto", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactPhoto", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactPhotoContent", "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactPhotoContent", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactPhotoContent", "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactPhotoContent", "Permissions": { "Name": "Contacts.Read", "Description": "Read your contacts ", "FullDescription": "Allows the app to read contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "Get-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "PersonalContacts", + "Command": "Get-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { + "Uri": "/users/{user-id}/createdObjects", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgUserCreatedObject", + "Permissions": [ + { + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + }, + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + } + ], + "Variants": [ + "List1" + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" + }, + { "Uri": "/users/{user-id}/createdObjects", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserCreatedObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89167,17 +89108,72 @@ "IsAdmin": true } ], - "ApiVersion": "beta", + "Variants": [ + "List" + ], "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" + }, + { + "Uri": "/users/{user-id}/createdObjects/$ref", + "ApiVersion": "beta", + "Method": "GET", + "Command": "Get-MgUserCreatedObjectByRef", + "Permissions": [ + { + "Name": "Directory.AccessAsUser.All", + "Description": "Access the directory as you", + "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", + "IsAdmin": true + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory.", + "IsAdmin": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true + }, + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + } + ], "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserCreatedObject", - "Uri": "/users/{user-id}/createdObjects", + "Uri": "/users/{user-id}/createdObjects/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserCreatedObjectByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89222,153 +89218,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] - }, - { - "Command": "Get-MgUserCreatedObjectByRef", - "Uri": "/users/{user-id}/createdObjects/$ref", - "Method": "GET", - "Module": "Users", - "Permissions": [ - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - }, - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": null, - "Variants": [ - "List1" - ] + "Module": "Users" }, { - "Command": "Get-MgUserCreatedObjectByRef", - "Uri": "/users/{user-id}/createdObjects/$ref", - "Method": "GET", - "Module": "Users", - "Permissions": [ - { - "Name": "Directory.AccessAsUser.All", - "Description": "Access the directory as you", - "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "IsAdmin": true - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory.", - "IsAdmin": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true - }, - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - } - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "List" - ] - }, - { - "Command": "Get-MgUserDefaultCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserDefaultCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Get3", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgUserDefaultCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserDefaultCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgUserDefaultCalendarSchedule", "Uri": "/users/{user-id}/calendar/getSchedule", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserDefaultCalendarSchedule", "Permissions": [ { "Name": "Calendars.Read", @@ -89383,20 +89269,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get2", "GetExpanded2", "GetViaIdentity2", "GetViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserDefaultCalendarSchedule", "Uri": "/users/{user-id}/calendar/getSchedule", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserDefaultCalendarSchedule", "Permissions": [ { "Name": "Calendars.Read", @@ -89411,20 +89297,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserDelta", "Uri": "/users/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserDelta", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -89523,17 +89409,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "Delta1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserDelta", "Uri": "/users/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserDelta", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -89632,142 +89518,142 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "Delta" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserDevice", "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserDevice", "Uri": "/users/{user-id}/devices", + "ApiVersion": "beta", "Method": "GET", - "Module": "CrossDeviceExperiences", + "Command": "Get-MgUserDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "CrossDeviceExperiences" }, { - "Command": "Get-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceEnrollmentConfigurationAssignment", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceEnrollmentConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceEnrollmentConfigurationAssignment", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceEnrollmentConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserDirectReport", "Uri": "/users/{user-id}/directReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserDirectReport", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89800,17 +89686,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserDirectReport", "Uri": "/users/{user-id}/directReports", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserDirectReport", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89843,17 +89729,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserDirectReportByRef", "Uri": "/users/{user-id}/directReports/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserDirectReportByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89886,17 +89772,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserDirectReportByRef", "Uri": "/users/{user-id}/directReports/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserDirectReportByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -89929,17 +89815,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgUserDrive", "Permissions": [ { "Name": "Files.Read", @@ -89978,20 +89864,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgUserDrive", "Uri": "/users/{user-id}/drives", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Get-MgUserDrive", "Permissions": [ { "Name": "Files.Read", @@ -90030,17 +89916,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "Get-MgUserDrive", "Uri": "/users/{user-id}/drives", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgUserDrive", "Permissions": [ { "Name": "Files.Read", @@ -90079,17 +89965,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Get-MgUserDrive", "Permissions": [ { "Name": "Files.Read", @@ -90128,51 +90014,51 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "Get-MgUserEffectiveDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/getEffectiveDeviceEnrollmentConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserEffectiveDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEvent", "Uri": "/users/{user-id}/events", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -90187,17 +90073,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEvent", "Uri": "/users/{user-id}/events", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEvent", "Permissions": [ { "Name": "Calendars.Read", @@ -90212,498 +90098,498 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventAttachment", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventAttachment", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventCalendar", "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventCalendar", "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventCalendarSchedule", "Uri": "/users/{user-id}/events/{event-id}/calendar/getSchedule", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserEventCalendarSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserEventCalendarSchedule", "Uri": "/users/{user-id}/events/{event-id}/calendar/getSchedule", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserEventCalendarSchedule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScheduleInformation", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserEventDelta", "Uri": "/users/{user-id}/events/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserEventDelta", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserEventDelta", "Uri": "/users/{user-id}/events/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserEventDelta", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserEventExceptionOccurrence", "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventExceptionOccurrence", "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Get-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Get-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventInstance", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventInstance", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventInstanceDelta", "Uri": "/users/{user-id}/events/{event-id}/instances/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserEventInstanceDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserEventInstanceDelta", "Uri": "/users/{user-id}/events/{event-id}/instances/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserEventInstanceDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Calendar", + "Command": "Get-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "Get-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserExtension", "Uri": "/users/{user-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserExtension", "Uri": "/users/{user-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserFollowedSite", "Uri": "/users/{user-id}/followedSites", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgUserFollowedSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -90718,17 +90604,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "Get-MgUserFollowedSite", "Uri": "/users/{user-id}/followedSites", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgUserFollowedSite", "Permissions": [ { "Name": "Sites.Read.All", @@ -90743,17 +90629,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "Get-MgUserFollowedSiteByRef", "Uri": "/users/{user-id}/followedSites/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgUserFollowedSiteByRef", "Permissions": [ { "Name": "Sites.Read.All", @@ -90768,17 +90654,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgUserFollowedSiteByRef", "Uri": "/users/{user-id}/followedSites/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Get-MgUserFollowedSiteByRef", "Permissions": [ { "Name": "Sites.Read.All", @@ -90793,141 +90679,141 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Get-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassification", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassification", + "Module": "Mail" }, { - "Command": "Get-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassification", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassification", + "Module": "Mail" }, { - "Command": "Get-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassificationOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "Get-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "Get-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "Get-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserInferenceClassificationOverride", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "Get-MgUserInformationProtection", "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Get-MgUserInformationProtection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtection", + "Module": "Identity.SignIns" }, { - "Command": "Get-MgUserJoinedGroup", "Uri": "/users/{user-id}/joinedGroups/{group-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgUserJoinedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Get-MgUserJoinedGroup", "Uri": "/users/{user-id}/joinedGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Get-MgUserJoinedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Get-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserJoinedTeam", "Permissions": [ { "Name": "Directory.Read.All", @@ -90972,17 +90858,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTeam", + "Module": "Teams" }, { - "Command": "Get-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserJoinedTeam", "Permissions": [ { "Name": "Directory.Read.All", @@ -91027,30 +90913,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "Get-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams/{team-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserJoinedTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "Get-MgUserJoinedTeamByRef", "Uri": "/users/{user-id}/joinedTeams/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserJoinedTeamByRef", "Permissions": [ { "Name": "Directory.Read.All", @@ -91095,43 +90981,43 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgUserLastSharedMethodInsight", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserLastSharedMethodInsight", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Users" }, { - "Command": "Get-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserLicenseDetail", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -91170,17 +91056,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Users" }, { - "Command": "Get-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserLicenseDetail", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -91219,43 +91105,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Users" }, { - "Command": "Get-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Users" }, { - "Command": "Get-MgUserLoggedOnManagedDevice", "Uri": "/users/{user-id}/getLoggedOnManagedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserLoggedOnManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91276,18 +91162,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91308,17 +91194,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91339,17 +91225,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91370,31 +91256,31 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderChildFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91415,17 +91301,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderChildFolder", "Permissions": [ { "Name": "Mail.Read", @@ -91446,56 +91332,56 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderChildFolderDelta", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderChildFolderDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderChildFolderDelta", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderChildFolderDelta", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderDelta", "Uri": "/users/{user-id}/mailFolders/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderDelta", "Permissions": [ { "Name": "Mail.Read", @@ -91516,18 +91402,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderDelta", "Uri": "/users/{user-id}/mailFolders/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderDelta", "Permissions": [ { "Name": "Mail.Read", @@ -91548,18 +91434,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessage", "Permissions": [ { "Name": "Mail.Read", @@ -91574,18 +91460,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessage", "Permissions": [ { "Name": "Mail.Read", @@ -91606,17 +91492,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessage", "Permissions": [ { "Name": "Mail.Read", @@ -91637,17 +91523,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessage", "Permissions": [ { "Name": "Mail.Read", @@ -91662,78 +91548,78 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageAttachment", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageAttachment", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageContent", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageContent", "Permissions": [ { "Name": "Mail.Read", @@ -91748,18 +91634,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageContent", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageContent", "Permissions": [ { "Name": "Mail.Read", @@ -91774,18 +91660,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageDelta", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderMessageDelta", "Permissions": [ { "Name": "Mail.Read", @@ -91806,18 +91692,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderMessageDelta", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMailFolderMessageDelta", "Permissions": [ { "Name": "Mail.Read", @@ -91838,368 +91724,368 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMention", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMention", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderUserConfiguration", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderUserConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserConfiguration", + "Module": "Mail" }, { - "Command": "Get-MgUserMailFolderUserConfiguration", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMailFolderUserConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserConfiguration", + "Module": "Mail" }, { - "Command": "Get-MgUserMailTip", "Uri": "/users/{user-id}/getMailTips", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMailTip", "Permissions": [ { "Name": "Mail.Read", @@ -92214,20 +92100,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailTips", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailTips", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserMailTip", "Uri": "/users/{user-id}/getMailTips", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMailTip", "Permissions": [ { "Name": "Mail.Read", @@ -92242,20 +92128,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailTips", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailTips", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserManagedAppBlockedUser", "Uri": "/users/getManagedAppBlockedUsers", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppBlockedUser", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -92354,17 +92240,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppDiagnosticStatuses", "Uri": "/users/{user-id}/getManagedAppDiagnosticStatuses", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppDiagnosticStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -92379,18 +92265,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppDiagnosticStatuses", "Uri": "/users/{user-id}/getManagedAppDiagnosticStatuses", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppDiagnosticStatuses", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -92405,18 +92291,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppPolicy", "Uri": "/users/{user-id}/getManagedAppPolicies", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -92431,18 +92317,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppPolicy", "Uri": "/users/{user-id}/getManagedAppPolicies", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppPolicy", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -92457,92 +92343,92 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppRegistration", "Uri": "/users/{user-id}/managedAppRegistrations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedAppRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedAppRegistration", "Uri": "/users/{user-id}/managedAppRegistrations", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedAppRegistration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedAppRegistrationByRef", "Uri": "/users/{user-id}/managedAppRegistrations/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedAppRegistrationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedAppRegistrationByRef", "Uri": "/users/{user-id}/managedAppRegistrations/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedAppRegistrationByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedAppRegistrationUserId", "Uri": "/users/{user-id}/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppRegistrationUserId", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedAppRegistrationUserId", "Uri": "/users/{user-id}/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedAppRegistrationUserId", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -92581,18 +92467,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -92631,17 +92517,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -92680,17 +92566,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -92729,394 +92615,394 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory2", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory2", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCloudPcRemoteActionResult", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedDeviceCloudPcRemoteActionResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceDetectedApp", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceDetectedApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceDetectedAppByRef", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceFileVaultKey", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceLogCollectionResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceMobileAppConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceMobileAppConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceNonCompliantSetting", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedDeviceNonCompliantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManagedDeviceSecurityBaselineState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceSecurityBaselineState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceSecurityBaselineStateSettingState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceSecurityBaselineStateSettingState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceUser", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceUserByRef", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceWindowProtectionState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsProtectionState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserManagedDeviceWithAppFailure", "Uri": "/users/{user-id}/getManagedDevicesWithAppFailures", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserManagedDeviceWithAppFailure", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -93131,20 +93017,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Get-MgUserManager", "Uri": "/users/{user-id}/manager", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserManager", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93177,18 +93063,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserManager", "Uri": "/users/{user-id}/manager", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserManager", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93221,18 +93107,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserManagerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93265,18 +93151,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserManagerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93309,18 +93195,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserMemberGroup", "Uri": "/users/{user-id}/getMemberGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93377,20 +93263,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Get-MgUserMemberGroup", "Uri": "/users/{user-id}/getMemberGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMemberGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93447,20 +93333,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Get-MgUserMemberObject", "Uri": "/users/{user-id}/getMemberObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93499,20 +93385,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Get-MgUserMemberObject", "Uri": "/users/{user-id}/getMemberObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserMemberObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93551,20 +93437,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Get-MgUserMemberOf", "Uri": "/users/{user-id}/memberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93597,17 +93483,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserMemberOf", "Uri": "/users/{user-id}/memberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93640,17 +93526,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserMemberOfByRef", "Uri": "/users/{user-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93683,17 +93569,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserMemberOfByRef", "Uri": "/users/{user-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -93726,17 +93612,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessage", "Permissions": [ { "Name": "Mail.Read", @@ -93751,18 +93637,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "Get-MgUserMessage", "Uri": "/users/{user-id}/messages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessage", "Permissions": [ { "Name": "Mail.Read", @@ -93783,17 +93669,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "Get-MgUserMessage", "Uri": "/users/{user-id}/messages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessage", "Permissions": [ { "Name": "Mail.Read", @@ -93814,17 +93700,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "Get-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessage", "Permissions": [ { "Name": "Mail.Read", @@ -93839,78 +93725,78 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageAttachment", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageAttachment", "Permissions": { "Name": "Mail.Read", "Description": "Read your mail ", "FullDescription": "Allows the app to read email in your mailbox. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageContent", "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageContent", "Permissions": [ { "Name": "Mail.Read", @@ -93925,18 +93811,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMessageContent", "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageContent", "Permissions": [ { "Name": "Mail.Read", @@ -93951,18 +93837,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMessageDelta", "Uri": "/users/{user-id}/messages/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMessageDelta", "Permissions": [ { "Name": "Mail.Read", @@ -93977,18 +93863,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMessageDelta", "Uri": "/users/{user-id}/messages/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserMessageDelta", "Permissions": [ { "Name": "Mail.Read", @@ -94003,193 +93889,193 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMention", "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMention", "Uri": "/users/{user-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Mail", + "Command": "Get-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "Get-MgUserMobileAppIntentAndState", "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppIntentAndState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -94204,18 +94090,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppIntentAndState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserMobileAppIntentAndState", "Uri": "/users/{user-id}/mobileAppIntentAndStates", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppIntentAndState", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -94230,92 +94116,92 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppIntentAndState", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserMobileAppTroubleshootingEvent", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserMobileAppTroubleshootingEvent", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserNotification", "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserNotification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNotification", + "Module": "Users" }, { - "Command": "Get-MgUserNotification", "Uri": "/users/{user-id}/notifications", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserNotification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNotification", + "Module": "Users" }, { - "Command": "Get-MgUserOauth2PermissionGrant", "Uri": "/users/{user-id}/oauth2PermissionGrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -94342,17 +94228,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Users" }, { - "Command": "Get-MgUserOauth2PermissionGrant", "Uri": "/users/{user-id}/oauth2PermissionGrants", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -94379,17 +94265,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Users" }, { - "Command": "Get-MgUserOauth2PermissionGrantByRef", "Uri": "/users/{user-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOauth2PermissionGrantByRef", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -94416,17 +94302,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOauth2PermissionGrantByRef", "Uri": "/users/{user-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOauth2PermissionGrantByRef", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -94453,17 +94339,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -94496,18 +94382,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -94540,17 +94426,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -94583,17 +94469,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -94626,48 +94512,48 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebookFromWebUrl", "Uri": "/users/{user-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserOnenoteNotebookFromWebUrl", "Uri": "/users/{user-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserOnenoteNotebookFromWebUrl", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCopyNotebookModel", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserOnenoteNotebookSection", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -94700,17 +94586,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebookSection", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -94743,17 +94629,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebookSectionGroup", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -94786,17 +94672,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteNotebookSectionGroup", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -94829,17 +94715,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteOperation", "Uri": "/users/{user-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -94872,18 +94758,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteOperation", "Uri": "/users/{user-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteOperation", "Permissions": [ { "Name": "Notes.Create", @@ -94916,18 +94802,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteOperation", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -94954,18 +94840,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -94992,17 +94878,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -95029,17 +94915,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Read", @@ -95066,18 +94952,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePageContent", "Permissions": [ { "Name": "Notes.Read", @@ -95104,18 +94990,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenotePageContent", "Permissions": [ { "Name": "Notes.Read", @@ -95142,70 +95028,70 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteRecentNotebook", "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserOnenoteRecentNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserOnenoteRecentNotebook", "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserOnenoteRecentNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecentNotebook", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserOnenoteResource", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteResource", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteResource", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteResourceContent", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -95232,18 +95118,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteResourceContent", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteResourceContent", "Permissions": [ { "Name": "Notes.Read", @@ -95270,18 +95156,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -95314,18 +95200,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -95358,17 +95244,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -95401,17 +95287,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSection", "Permissions": [ { "Name": "Notes.Create", @@ -95444,18 +95330,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -95488,18 +95374,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -95532,18 +95418,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "List2", "List3" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -95576,18 +95462,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -95620,18 +95506,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroupSection", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -95664,17 +95550,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionGroupSection", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -95707,17 +95593,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionPage", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -95744,17 +95630,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "Get-MgUserOnenoteSectionPage", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Notes", + "Command": "Get-MgUserOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Read", @@ -95781,17 +95667,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "Get-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeeting", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -95812,18 +95698,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeeting", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -95844,17 +95730,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeeting", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -95875,17 +95761,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeeting", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -95906,18 +95792,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAlternativeRecording", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAlternativeRecording", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -95938,73 +95824,123 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAttendanceReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReport", + "Permissions": [], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "List1" + ], "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgUserOnlineMeetingAttendanceReport", + "Permissions": [], "Variants": [ - "List" - ] + "Get2", + "GetViaIdentity2" + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", "Variants": [ "List", "List1" - ] + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], + "Variants": [ + "List2" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", + "Method": "GET", + "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], + "Variants": [ + "Get2", + "GetViaIdentity2" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAttendeeReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendeeReport", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -96025,18 +95961,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingAttendeeReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingAttendeeReport", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -96057,18 +95993,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRecording", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRecording", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -96089,681 +96025,681 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRegistration", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistration", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRegistrationCustomQuestion", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRegistrationCustomQuestion", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRegistrationRegistrant", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOnlineMeetingRegistrationRegistrant", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.Read", "Description": "Read your mailbox settings", "FullDescription": "Allows the app to read your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.Read", "Description": "Read your mailbox settings", "FullDescription": "Allows the app to read your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.Read", "Description": "Read your mailbox settings", "FullDescription": "Allows the app to read your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.Read", "Description": "Read your mailbox settings", "FullDescription": "Allows the app to read your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTask", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTask", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskAttachment", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskAttachment", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskAttachment", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolder", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolder", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolder", "Uri": "/users/{user-id}/outlook/taskFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolder", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTask", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroup", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroup", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskGroup", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroup", "Uri": "/users/{user-id}/outlook/taskGroups", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroup", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskGroup", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolder", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolder", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolder", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolder", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOutlookTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOutlookTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "Get-MgUserOwnedDevice", "Uri": "/users/{user-id}/ownedDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedDevice", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96784,17 +96720,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserOwnedDevice", "Uri": "/users/{user-id}/ownedDevices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedDevice", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96815,17 +96751,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserOwnedDeviceByRef", "Uri": "/users/{user-id}/ownedDevices/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedDeviceByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96846,17 +96782,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOwnedDeviceByRef", "Uri": "/users/{user-id}/ownedDevices/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedDeviceByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96877,17 +96813,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOwnedObject", "Uri": "/users/{user-id}/ownedObjects", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96926,17 +96862,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserOwnedObject", "Uri": "/users/{user-id}/ownedObjects", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedObject", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -96975,17 +96911,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserOwnedObjectByRef", "Uri": "/users/{user-id}/ownedObjects/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedObjectByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -97024,17 +96960,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOwnedObjectByRef", "Uri": "/users/{user-id}/ownedObjects/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserOwnedObjectByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -97073,43 +97009,43 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserOwnedObjectByType", "Uri": "/users/getUserOwnedObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Get-MgUserOwnedObjectByType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Get", "GetExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users.Actions" }, { - "Command": "Get-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserPerson", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPerson1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPerson1", + "Module": "People" }, { - "Command": "Get-MgUserPerson", "Uri": "/users/{user-id}/people", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserPerson", "Permissions": [ { "Name": "People.Read", @@ -97124,17 +97060,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPerson1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPerson1", + "Module": "People" }, { - "Command": "Get-MgUserPerson", "Uri": "/users/{user-id}/people", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserPerson", "Permissions": [ { "Name": "People.Read", @@ -97149,144 +97085,144 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPerson", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPerson", + "Module": "People" }, { - "Command": "Get-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserPerson", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPerson", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPerson", + "Module": "People" }, { - "Command": "Get-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhoto", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "Get-MgUserPhoto", "Uri": "/users/{user-id}/photos", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhoto", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "Get-MgUserPhoto", "Uri": "/users/{user-id}/photos", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhoto", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "Get-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhoto", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "Get-MgUserPhotoContent", "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhotoContent", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserPhotoContent", "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserPhotoContent", "Permissions": { "Name": "User.Read", "Description": "Sign you in and read your profile", "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get2", "Get3", "GetViaIdentity2", "GetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserPlanner", "Uri": "/users/{user-id}/planner", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlanner", "Permissions": [ { "Name": "Group.Read.All", @@ -97307,32 +97243,32 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerUser1", "Variants": [ "Get1", "Get2", "GetViaIdentity1", "GetViaIdentity2" - ] + ], + "OutputType": "IMicrosoftGraphPlannerUser1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlanner", "Uri": "/users/{user-id}/planner/all", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlanner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerDelta", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerDelta", + "Module": "Planner" }, { - "Command": "Get-MgUserPlanner", "Uri": "/users/{user-id}/planner", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlanner", "Permissions": [ { "Name": "Group.Read.All", @@ -97353,18 +97289,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerUser", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerUser", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerAllDelta", "Uri": "/users/{user-id}/planner/all/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserPlannerAllDelta", "Permissions": [ { "Name": "Group.Read.All", @@ -97391,18 +97327,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerDelta", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPlannerDelta", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserPlannerFavoritePlan", "Uri": "/users/{user-id}/planner/favoritePlans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerFavoritePlan", "Permissions": [ { "Name": "Group.Read.All", @@ -97423,17 +97359,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerPlan", "Uri": "/users/{user-id}/planner/plans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -97460,17 +97396,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerPlan", "Uri": "/users/{user-id}/planner/plans", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -97497,17 +97433,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerRecentPlan", "Uri": "/users/{user-id}/planner/recentPlans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerRecentPlan", "Permissions": [ { "Name": "Group.Read.All", @@ -97528,17 +97464,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerRosterPlan", "Uri": "/users/{user-id}/planner/rosterPlans", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerRosterPlan", "Permissions": [ { "Name": "Tasks.Read", @@ -97553,17 +97489,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerTask", "Uri": "/users/{user-id}/planner/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -97590,17 +97526,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "Get-MgUserPlannerTask", "Uri": "/users/{user-id}/planner/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Planner", + "Command": "Get-MgUserPlannerTask", "Permissions": [ { "Name": "Group.Read.All", @@ -97627,17 +97563,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "Get-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserPresence", "Permissions": [ { "Name": "Presence.Read", @@ -97652,18 +97588,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence1", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPresence1", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "CloudCommunications", + "Command": "Get-MgUserPresence", "Permissions": [ { "Name": "Presence.Read", @@ -97678,18 +97614,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphPresence", + "Module": "CloudCommunications" }, { - "Command": "Get-MgUserProfile", "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfile", "Permissions": [ { "Name": "User.Read", @@ -97722,18 +97658,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfile", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProfile", + "Module": "People" }, { - "Command": "Get-MgUserProfileAccount", "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAccount", "Permissions": [ { "Name": "User.Read", @@ -97766,18 +97702,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserAccountInformation", + "Module": "People" }, { - "Command": "Get-MgUserProfileAccount", "Uri": "/users/{user-id}/profile/account", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAccount", "Permissions": [ { "Name": "User.Read", @@ -97810,17 +97746,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserAccountInformation", + "Module": "People" }, { - "Command": "Get-MgUserProfileAddress", "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAddress", "Permissions": [ { "Name": "User.Read", @@ -97853,18 +97789,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemAddress", + "Module": "People" }, { - "Command": "Get-MgUserProfileAddress", "Uri": "/users/{user-id}/profile/addresses", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAddress", "Permissions": [ { "Name": "User.Read", @@ -97897,17 +97833,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemAddress", + "Module": "People" }, { - "Command": "Get-MgUserProfileAnniversary", "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAnniversary", "Permissions": [ { "Name": "User.Read", @@ -97940,18 +97876,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnualEvent", + "Module": "People" }, { - "Command": "Get-MgUserProfileAnniversary", "Uri": "/users/{user-id}/profile/anniversaries", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAnniversary", "Permissions": [ { "Name": "User.Read", @@ -97984,17 +97920,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnualEvent", + "Module": "People" }, { - "Command": "Get-MgUserProfileAward", "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAward", "Permissions": [ { "Name": "User.Read", @@ -98027,18 +97963,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonAward", + "Module": "People" }, { - "Command": "Get-MgUserProfileAward", "Uri": "/users/{user-id}/profile/awards", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileAward", "Permissions": [ { "Name": "User.Read", @@ -98071,17 +98007,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonAward", + "Module": "People" }, { - "Command": "Get-MgUserProfileCertification", "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileCertification", "Permissions": [ { "Name": "User.Read", @@ -98114,61 +98050,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", "Variants": [ "Get", "GetViaIdentity" - ] - }, - { - "Command": "Get-MgUserProfileCertification", - "Uri": "/users/{user-id}/profile/certifications", - "Method": "GET", - "Module": "People", - "Permissions": [ - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - }, - { - "Name": "User.ReadBasic.All", - "Description": "Read all users' basic profiles", - "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "IsAdmin": false - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true - } ], - "ApiVersion": "beta", "OutputType": "IMicrosoftGraphPersonCertification", - "Variants": [ - "List" - ] + "Module": "People" }, { - "Command": "Get-MgUserProfileEducationalActivity", - "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "Uri": "/users/{user-id}/profile/certifications", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileCertification", "Permissions": [ { "Name": "User.Read", @@ -98201,18 +98094,61 @@ "IsAdmin": true } ], + "Variants": [ + "List" + ], + "OutputType": "IMicrosoftGraphPersonCertification", + "Module": "People" + }, + { + "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", + "Method": "GET", + "Command": "Get-MgUserProfileEducationalActivity", + "Permissions": [ + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + }, + { + "Name": "User.ReadBasic.All", + "Description": "Read all users' basic profiles", + "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", + "IsAdmin": false + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true + } + ], "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationalActivity", + "Module": "People" }, { - "Command": "Get-MgUserProfileEducationalActivity", "Uri": "/users/{user-id}/profile/educationalActivities", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileEducationalActivity", "Permissions": [ { "Name": "User.Read", @@ -98245,17 +98181,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphEducationalActivity", + "Module": "People" }, { - "Command": "Get-MgUserProfileEmail", "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileEmail", "Permissions": [ { "Name": "User.Read", @@ -98288,18 +98224,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemEmail", + "Module": "People" }, { - "Command": "Get-MgUserProfileEmail", "Uri": "/users/{user-id}/profile/emails", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileEmail", "Permissions": [ { "Name": "User.Read", @@ -98332,17 +98268,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemEmail", + "Module": "People" }, { - "Command": "Get-MgUserProfileInterest", "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileInterest", "Permissions": [ { "Name": "User.Read", @@ -98375,18 +98311,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonInterest", + "Module": "People" }, { - "Command": "Get-MgUserProfileInterest", "Uri": "/users/{user-id}/profile/interests", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileInterest", "Permissions": [ { "Name": "User.Read", @@ -98419,17 +98355,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonInterest", + "Module": "People" }, { - "Command": "Get-MgUserProfileLanguage", "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileLanguage", "Permissions": [ { "Name": "User.Read", @@ -98462,18 +98398,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLanguageProficiency", + "Module": "People" }, { - "Command": "Get-MgUserProfileLanguage", "Uri": "/users/{user-id}/profile/languages", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileLanguage", "Permissions": [ { "Name": "User.Read", @@ -98506,17 +98442,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphLanguageProficiency", + "Module": "People" }, { - "Command": "Get-MgUserProfileName", "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileName", "Permissions": [ { "Name": "User.Read", @@ -98549,18 +98485,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonName", + "Module": "People" }, { - "Command": "Get-MgUserProfileName", "Uri": "/users/{user-id}/profile/names", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileName", "Permissions": [ { "Name": "User.Read", @@ -98593,17 +98529,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonName", + "Module": "People" }, { - "Command": "Get-MgUserProfileNote", "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileNote", "Permissions": [ { "Name": "User.Read", @@ -98636,18 +98572,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnotation", + "Module": "People" }, { - "Command": "Get-MgUserProfileNote", "Uri": "/users/{user-id}/profile/notes", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileNote", "Permissions": [ { "Name": "User.Read", @@ -98680,17 +98616,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnotation", + "Module": "People" }, { - "Command": "Get-MgUserProfilePatent", "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePatent", "Permissions": [ { "Name": "User.Read", @@ -98723,18 +98659,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemPatent", + "Module": "People" }, { - "Command": "Get-MgUserProfilePatent", "Uri": "/users/{user-id}/profile/patents", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePatent", "Permissions": [ { "Name": "User.Read", @@ -98767,17 +98703,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemPatent", + "Module": "People" }, { - "Command": "Get-MgUserProfilePhone", "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePhone", "Permissions": [ { "Name": "User.Read", @@ -98810,18 +98746,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemPhone", + "Module": "People" }, { - "Command": "Get-MgUserProfilePhone", "Uri": "/users/{user-id}/profile/phones", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePhone", "Permissions": [ { "Name": "User.Read", @@ -98854,17 +98790,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemPhone", + "Module": "People" }, { - "Command": "Get-MgUserProfilePosition", "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePosition", "Permissions": [ { "Name": "User.Read", @@ -98897,18 +98833,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkPosition", + "Module": "People" }, { - "Command": "Get-MgUserProfilePosition", "Uri": "/users/{user-id}/profile/positions", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePosition", "Permissions": [ { "Name": "User.Read", @@ -98941,17 +98877,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWorkPosition", + "Module": "People" }, { - "Command": "Get-MgUserProfileProject", "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileProject", "Permissions": [ { "Name": "User.Read", @@ -98984,18 +98920,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphProjectParticipation", + "Module": "People" }, { - "Command": "Get-MgUserProfileProject", "Uri": "/users/{user-id}/profile/projects", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileProject", "Permissions": [ { "Name": "User.Read", @@ -99028,17 +98964,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphProjectParticipation", + "Module": "People" }, { - "Command": "Get-MgUserProfilePublication", "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePublication", "Permissions": [ { "Name": "User.Read", @@ -99071,18 +99007,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphItemPublication", + "Module": "People" }, { - "Command": "Get-MgUserProfilePublication", "Uri": "/users/{user-id}/profile/publications", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfilePublication", "Permissions": [ { "Name": "User.Read", @@ -99115,17 +99051,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphItemPublication", + "Module": "People" }, { - "Command": "Get-MgUserProfileSkill", "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileSkill", "Permissions": [ { "Name": "User.Read", @@ -99158,18 +99094,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSkillProficiency", + "Module": "People" }, { - "Command": "Get-MgUserProfileSkill", "Uri": "/users/{user-id}/profile/skills", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileSkill", "Permissions": [ { "Name": "User.Read", @@ -99202,17 +99138,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSkillProficiency", + "Module": "People" }, { - "Command": "Get-MgUserProfileWebAccount", "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileWebAccount", "Permissions": [ { "Name": "User.Read", @@ -99245,18 +99181,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWebAccount", + "Module": "People" }, { - "Command": "Get-MgUserProfileWebAccount", "Uri": "/users/{user-id}/profile/webAccounts", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileWebAccount", "Permissions": [ { "Name": "User.Read", @@ -99289,17 +99225,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWebAccount", + "Module": "People" }, { - "Command": "Get-MgUserProfileWebsite", "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileWebsite", "Permissions": [ { "Name": "User.Read", @@ -99332,18 +99268,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPersonWebsite", + "Module": "People" }, { - "Command": "Get-MgUserProfileWebsite", "Uri": "/users/{user-id}/profile/websites", + "ApiVersion": "beta", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserProfileWebsite", "Permissions": [ { "Name": "User.Read", @@ -99376,17 +99312,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphPersonWebsite", + "Module": "People" }, { - "Command": "Get-MgUserRegisteredDevice", "Uri": "/users/{user-id}/registeredDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserRegisteredDevice", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99419,17 +99355,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserRegisteredDevice", "Uri": "/users/{user-id}/registeredDevices", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserRegisteredDevice", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99462,17 +99398,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserRegisteredDeviceByRef", "Uri": "/users/{user-id}/registeredDevices/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserRegisteredDeviceByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99505,17 +99441,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserRegisteredDeviceByRef", "Uri": "/users/{user-id}/registeredDevices/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserRegisteredDeviceByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99548,30 +99484,30 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgUserScopedRoleMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99592,17 +99528,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgUserScopedRoleMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -99623,56 +99559,56 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Get-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Get-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserSettings", + "Module": "Users" }, { - "Command": "Get-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSetting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserSettings1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserSettings1", + "Module": "Users" }, { - "Command": "Get-MgUserSettingItemInsight", "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSettingItemInsight", "Permissions": [ { "Name": "User.Read", @@ -99687,31 +99623,31 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInsightsSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserInsightsSettings", + "Module": "Users" }, { - "Command": "Get-MgUserSettingRegionalAndLanguageSetting", "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSettingRegionalAndLanguageSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings", + "Module": "Users" }, { - "Command": "Get-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSettingShiftPreference", "Permissions": [ { "Name": "User.Read.All", @@ -99726,18 +99662,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftPreferences", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphShiftPreferences", + "Module": "Users" }, { - "Command": "Get-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserSettingShiftPreference", "Permissions": [ { "Name": "User.Read.All", @@ -99752,18 +99688,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShiftPreferences1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphShiftPreferences1", + "Module": "Users" }, { - "Command": "Get-MgUserSharedInsight", "Uri": "/users/{user-id}/insights/shared", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserSharedInsight", "Permissions": [ { "Name": "Sites.Read.All", @@ -99778,147 +99714,147 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedInsight", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphSharedInsight", + "Module": "People" }, { - "Command": "Get-MgUserSharedInsight", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserSharedInsight", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedInsight", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphSharedInsight", + "Module": "People" }, { - "Command": "Get-MgUserSharedLastSharedMethodInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserSharedLastSharedMethodInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserSharedResourceInsight", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserSharedResourceInsight", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserSharedResourceInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserSharedResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserTaskAlltaskDelta", "Uri": "/users/{user-id}/tasks/alltasks/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTaskAlltaskDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTaskAlltaskParentListTaskDelta", "Uri": "/users/{user-id}/tasks/alltasks/{baseTask-id}/parentList/tasks/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTaskAlltaskParentListTaskDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTaskListDelta", "Uri": "/users/{user-id}/tasks/lists/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTaskListDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTaskList", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBaseTaskList", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTaskListTaskDelta", "Uri": "/users/{user-id}/tasks/lists/{baseTaskList-id}/tasks/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTaskListTaskDelta", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamwork", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserTeamwork", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserTeamwork", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamwork", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserTeamwork1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserTeamwork1", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -99939,18 +99875,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -99971,17 +99907,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100002,17 +99938,17 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100033,18 +99969,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledAppChat", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledAppChat", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100065,18 +100001,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledAppChat", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledAppChat", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100097,18 +100033,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledAppChatByRef", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100129,18 +100065,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Teams", + "Command": "Get-MgUserTeamworkInstalledAppChatByRef", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -100161,400 +100097,400 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Get-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "Get-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "Get-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "Get-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListDelta", "Uri": "/users/{user-id}/todo/lists/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTodoListDelta", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTodoListDelta", "Uri": "/users/{user-id}/todo/lists/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTodoListDelta", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskDelta", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/delta", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTodoListTaskDelta", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Delta1", "DeltaViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTodoListTaskDelta", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/delta", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Get-MgUserTodoListTaskDelta", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Delta", "DeltaViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users.Functions" }, { - "Command": "Get-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphExtension", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "Get-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "Get1", "GetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveMemberOf", "Uri": "/users/{user-id}/transitiveMemberOf", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -100575,17 +100511,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveMemberOf", "Uri": "/users/{user-id}/transitiveMemberOf", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveMemberOf", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -100606,17 +100542,17 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveMemberOfByRef", "Uri": "/users/{user-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -100637,17 +100573,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveMemberOfByRef", "Uri": "/users/{user-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveMemberOfByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -100668,41 +100604,41 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "List1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveReport", "Uri": "/users/{user-id}/transitiveReports", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users" }, { - "Command": "Get-MgUserTransitiveReportByRef", "Uri": "/users/{user-id}/transitiveReports/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users", + "Command": "Get-MgUserTransitiveReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Get-MgUserTrendingInsight", "Uri": "/users/{user-id}/insights/trending", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserTrendingInsight", "Permissions": [ { "Name": "Sites.Read.All", @@ -100717,30 +100653,30 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrending", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphTrending", + "Module": "People" }, { - "Command": "Get-MgUserTrendingInsight", "Uri": "/users/{user-id}/insights/trending/{trending-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserTrendingInsight", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrending", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphTrending", + "Module": "People" }, { - "Command": "Get-MgUserTrendingResourceInsight", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserTrendingResourceInsight", "Permissions": [ { "Name": "Sites.Read.All", @@ -100755,18 +100691,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserTrendingResourceInsightByRef", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserTrendingResourceInsightByRef", "Permissions": [ { "Name": "Sites.Read.All", @@ -100781,18 +100717,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserUsedInsight", "Uri": "/users/{user-id}/insights/used", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserUsedInsight", "Permissions": [ { "Name": "Sites.Read.All", @@ -100807,30 +100743,30 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUsedInsight", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphUsedInsight", + "Module": "People" }, { - "Command": "Get-MgUserUsedInsight", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserUsedInsight", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUsedInsight", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUsedInsight", + "Module": "People" }, { - "Command": "Get-MgUserUsedResourceInsight", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserUsedResourceInsight", "Permissions": [ { "Name": "Sites.Read.All", @@ -100845,18 +100781,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserUsedResourceInsightByRef", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "People", + "Command": "Get-MgUserUsedResourceInsightByRef", "Permissions": [ { "Name": "Sites.Read.All", @@ -100871,202 +100807,202 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Get-MgUserWindowInformationProtectionDeviceRegistration", "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserWindowInformationProtectionDeviceRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgUserWindowInformationProtectionDeviceRegistrationByRef", "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/$ref", + "ApiVersion": "beta", "Method": "GET", - "Module": "Devices.CorporateManagement", + "Command": "Get-MgUserWindowInformationProtectionDeviceRegistrationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "List" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Get-MgWindowsUpdatesCatalogEntry", "Uri": "/admin/windows/updates/catalog/entries/{catalogEntry-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesCatalogEntry", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesCatalogEntry", "Uri": "/admin/windows/updates/catalog/entries", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesCatalogEntry", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeployment", "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeployment", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeployment", "Uri": "/admin/windows/updates/deployments", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeployment", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeploymentAudienceExclusion", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeploymentAudienceExclusion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeploymentAudienceExclusion", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeploymentAudienceExclusion", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeploymentAudienceMember", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeploymentAudienceMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesDeploymentAudienceMember", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesDeploymentAudienceMember", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesUpdatableAsset", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Get", "GetViaIdentity" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Get-MgWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets", + "ApiVersion": "beta", "Method": "GET", - "Module": "WindowsUpdates", + "Command": "Get-MgWindowsUpdatesUpdatableAsset", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", "Variants": [ "List" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", + "Module": "WindowsUpdates" }, { - "Command": "Grant-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission/grant", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Grant-MgSharePermission", "Permissions": [ { "Name": "Files.ReadWrite", @@ -101087,20 +101023,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Files" }, { - "Command": "Grant-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission/grant", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Grant-MgSharePermission", "Permissions": [ { "Name": "Files.ReadWrite", @@ -101121,204 +101057,204 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "Grant1", "GrantExpanded1", "GrantViaIdentity1", "GrantViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Files" }, { - "Command": "Grant-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Grant-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "Grant-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Grant-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "Grant1", "GrantExpanded1", "GrantViaIdentity1", "GrantViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Sites" }, { - "Command": "Hide-MgChat", "Uri": "/chats/{chat-id}/hideForUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Hide-MgChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Hide", "HideExpanded", "HideViaIdentity", "HideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Import-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityAppleDeviceIdentityList", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/importAppleDeviceIdentityList", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityAppleDeviceIdentityList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentityResult", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentityResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgDeviceManagementImportedDeviceIdentityList", "Uri": "/deviceManagement/importedDeviceIdentities/importDeviceIdentityList", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementImportedDeviceIdentityList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentityResult", "Variants": [ "Import", "ImportExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedDeviceIdentityResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Import", "ImportExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Import1", "ImportExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgDeviceManagementTemplateMigratableToOffice365DeviceConfigurationPolicy", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/importOffice365DeviceConfigurationPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementTemplateMigratableToOffice365DeviceConfigurationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Import", "ImportViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgDeviceManagementTemplateOffice365DeviceConfigurationPolicy", "Uri": "/deviceManagement/templates/importOffice365DeviceConfigurationPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Import-MgDeviceManagementTemplateOffice365DeviceConfigurationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Import" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement.Actions" }, { - "Command": "Import-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Import-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Import-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Import-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Import-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Import-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Import-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Import-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Initialize-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/activate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Initialize-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -101333,744 +101269,744 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Initialize-MgDeviceManagementComanagedDeviceEsim", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Initialize-MgDeviceManagementComanagedDeviceEsim", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Initialize-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceEsim", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Initialize-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceEsim", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Initialize-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceEsim", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Initialize-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceEsim", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Initialize-MgDeviceManagementManagedDeviceEsim", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Initialize-MgDeviceManagementManagedDeviceEsim", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Initialize-MgDeviceManagementScriptDeviceRunStateManagedDeviceEsim", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Initialize-MgDeviceManagementScriptDeviceRunStateManagedDeviceEsim", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Initialize-MgOrganizationService", "Uri": "/organization/{organization-id}/activateService", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Initialize-MgOrganizationService", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Initialize-MgUserManagedDeviceEsim", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Initialize-MgUserManagedDeviceEsim", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Initialize-MgUserServicePlan", "Uri": "/users/{user-id}/activateServicePlan", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Initialize-MgUserServicePlan", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAbortUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/abort", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAbortUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAbortUserInsightSharedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/abort", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAbortUserInsightSharedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAbortUserInsightTrendingResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/abort", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAbortUserInsightTrendingResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAbortUserInsightUsedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/abort", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAbortUserInsightUsedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupCalendarEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupCalendarEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupEventTentatively", "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupEventTentatively", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptGroupEventTentatively", "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgAcceptGroupEventTentatively", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgAcceptIdentityGovernanceAccessReviewDecisionInstanceRecommendation", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/acceptRecommendations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgAcceptIdentityGovernanceAccessReviewDecisionInstanceRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgAcceptUserEvent", "Uri": "/users/{user-id}/events/{event-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEvent", "Uri": "/users/{user-id}/events/{event-id}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventInstanceTentatively", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventInstanceTentatively", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventInstanceTentatively", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventInstanceTentatively", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventTentatively", "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventTentatively", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept1", "AcceptExpanded1", "AcceptViaIdentity1", "AcceptViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserEventTentatively", "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserEventTentatively", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserInsightSharedLastSharedMethodMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserInsightSharedLastSharedMethodMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserInsightSharedResourceMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserInsightSharedResourceMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserInsightTrendingResourceMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserInsightTrendingResourceMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserInsightUsedResourceMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserInsightUsedResourceMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept1", "AcceptViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequest", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequestTentatively", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMailFolderMessageMicrosoftGraphEventMessageRequestTentatively", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/messages/{message-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Accept1", "AcceptViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphCalendarSharingMessage", "Uri": "/users/{user-id}/messages/{message-id}/accept", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphCalendarSharingMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequest", "Uri": "/users/{user-id}/messages/{message-id}/accept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequestTentatively", "Uri": "/users/{user-id}/messages/{message-id}/tentativelyAccept", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserMessageMicrosoftGraphEventMessageRequestTentatively", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserPendingAccessReviewInstanceDecisionInstanceRecommendation", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/acceptRecommendations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserPendingAccessReviewInstanceDecisionInstanceRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/acceptRecommendations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation", "Permissions": { "Name": "AccessReview.ReadWrite.All", "Description": "Manage access reviews that you can access", "FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Accept", "AcceptViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAccountDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignResourceAccountFromDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgAccountDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Account", "AccountViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgAnswerCommunicationCall", "Uri": "/communications/calls/{call-id}/answer", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgAnswerCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Answer", "AnswerExpanded", "AnswerViaIdentity", "AnswerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgAnswerCommunicationCall", "Uri": "/communications/calls/{call-id}/answer", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgAnswerCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Answer1", "AnswerExpanded1", "AnswerViaIdentity1", "AnswerViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgArchiveTeam", "Uri": "/teams/{team-id}/archive", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgArchiveTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -102091,20 +102027,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgArchiveTeam", "Uri": "/teams/{team-id}/archive", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgArchiveTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -102125,33 +102061,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Archive1", "ArchiveExpanded1", "ArchiveViaIdentity1", "ArchiveViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgAsComplianceEdiscoveryCaseTagChildTagHierarchy", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/asHierarchy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Invoke-MgAsComplianceEdiscoveryCaseTagChildTagHierarchy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "As", "AsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/asHierarchy", + "ApiVersion": "beta", "Method": "GET", - "Module": "Compliance", + "Command": "Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -102166,134 +102102,134 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "As", "AsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/autofitColumns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatRow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/autofitRows", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeFormatRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/autofitColumns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatRow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/autofitRows", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightSharedResourceMicrosoftGraphWorkbookRangeFormatRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatColumn", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/autofitColumns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatRow", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/autofitRows", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightTrendingResourceMicrosoftGraphWorkbookRangeFormatRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatColumn", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/autofitColumns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatRow", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/autofitRows", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgAutofitUserInsightUsedResourceMicrosoftGraphWorkbookRangeFormatRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Autofit", "AutofitViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType", "Uri": "/directory/federationConfigurations/availableProviderTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Available" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgAvailableIdentityProviderType", "Uri": "/identityProviders/availableProviderTypes", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Invoke-MgAvailableIdentityProviderType", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -102308,17 +102244,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Available" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgAvailableIdentityProviderType", "Uri": "/identityProviders/availableProviderTypes", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.SignIns", + "Command": "Invoke-MgAvailableIdentityProviderType", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -102333,963 +102269,963 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Available1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgBatchIdentityGovernanceAccessReviewDecisionInstanceRecordDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/batchRecordDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgBatchIdentityGovernanceAccessReviewDecisionInstanceRecordDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgBatchUserPendingAccessReviewInstanceDecisionInstanceRecordDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/batchRecordDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgBatchUserPendingAccessReviewInstanceDecisionInstanceRecordDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/batchRecordDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision", "Permissions": { "Name": "AccessReview.ReadWrite.All", "Description": "Manage access reviews that you can access", "FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/beginOnboarding", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Begin", "BeginViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/beginOnboarding", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Begin1", "BeginViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgBoundingUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeRect", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/boundingRect(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgBoundingUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeRect", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Bounding", "BoundingViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgBoundingUserInsightSharedResourceMicrosoftGraphWorkbookRangeRect", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/boundingRect(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgBoundingUserInsightSharedResourceMicrosoftGraphWorkbookRangeRect", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Bounding", "BoundingViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgBoundingUserInsightTrendingResourceMicrosoftGraphWorkbookRangeRect", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/boundingRect(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgBoundingUserInsightTrendingResourceMicrosoftGraphWorkbookRangeRect", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Bounding", "BoundingViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgBoundingUserInsightUsedResourceMicrosoftGraphWorkbookRangeRect", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/boundingRect(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgBoundingUserInsightUsedResourceMicrosoftGraphWorkbookRangeRect", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Bounding", "BoundingViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgBufferInformationProtectionDecrypt", "Uri": "/informationProtection/decryptBuffer", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgBufferInformationProtectionDecrypt", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Buffer", "BufferExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgBufferInformationProtectionEncrypt", "Uri": "/informationProtection/encryptBuffer", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgBufferInformationProtectionEncrypt", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBufferEncryptionResult", "Variants": [ "Buffer", "BufferExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBufferEncryptionResult", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgBulkDeviceManagementComanagedDeviceReprovisionCloudPc", "Uri": "/deviceManagement/comanagedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgBulkDeviceManagementComanagedDeviceReprovisionCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bulk", "BulkExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgBulkDeviceManagementDetectedAppManagedDeviceReprovisionCloudPc", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgBulkDeviceManagementDetectedAppManagedDeviceReprovisionCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgBulkDeviceManagementManagedDeviceReprovisionCloudPc", "Uri": "/deviceManagement/managedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgBulkDeviceManagementManagedDeviceReprovisionCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bulk", "BulkExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgBulkUserManagedDeviceReprovisionCloudPc", "Uri": "/users/{user-id}/managedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgBulkUserManagedDeviceReprovisionCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCalendarGroupCalendar", "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Invoke-MgCalendarGroupCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Calendar", "CalendarViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgCalendarGroupCalendar", "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Invoke-MgCalendarGroupCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Calendar1", "CalendarViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Calendar", "Calendar3", "CalendarViaIdentity", "CalendarViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Calendar1", "Calendar2", "CalendarViaIdentity1", "CalendarViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCalendarUserEventCalendarAllowedCalendarSharingRoles", "Uri": "/users/{user-id}/events/{event-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCalendarUserEventCalendarAllowedCalendarSharingRoles", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Calendar", "CalendarViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCalendarUserEventCalendarAllowedCalendarSharingRoles", "Uri": "/users/{user-id}/events/{event-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCalendarUserEventCalendarAllowedCalendarSharingRoles", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Calendar1", "CalendarViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCellUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/cell(row={row},column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCellUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Cell", "CellViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCellUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/cell(row={row},column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCellUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Cell", "CellViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCellUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/cell(row={row},column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCellUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Cell", "CellViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCellUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/cell(row={row},column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgCellUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Cell", "CellViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCleanDeviceManagementComanagedDeviceWindowDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementComanagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clean1", "CleanExpanded1", "CleanViaIdentity1", "CleanViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanDeviceManagementScriptDeviceRunStateManagedDeviceWindowDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCleanDeviceManagementScriptDeviceRunStateManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCleanUserManagedDeviceWindowDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCleanUserManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Clean1", "CleanExpanded1", "CleanViaIdentity1", "CleanViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCleanUserManagedDeviceWindowDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCleanUserManagedDeviceWindowDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgClockTeamScheduleTimeCardIn", "Uri": "/teams/{team-id}/schedule/timeCards/clockIn", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgClockTeamScheduleTimeCardIn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Clock", "ClockExpanded", "ClockViaIdentity", "ClockViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Invoke-MgClockTeamScheduleTimeCardOut", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/clockOut", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgClockTeamScheduleTimeCardOut", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Clock", "ClockExpanded", "ClockViaIdentity", "ClockViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Invoke-MgCloudDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCloudDeviceManagementComanagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCloudDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCloudDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCloudDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCloudDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCloudDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCloudDeviceManagementManagedDevice", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCloudDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgCloudDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCloudUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCloudUserManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cloud", "CloudViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/column(column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Column", "ColumnViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeAfter", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/columnsAfter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeAfter", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeBefore", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/columnsBefore", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeBefore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/column(column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Column", "ColumnViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRangeAfter", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/columnsAfter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRangeAfter", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRangeBefore", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/columnsBefore", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightSharedResourceMicrosoftGraphWorkbookRangeBefore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/column(column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Column", "ColumnViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRangeAfter", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/columnsAfter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRangeAfter", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRangeBefore", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/columnsBefore", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightTrendingResourceMicrosoftGraphWorkbookRangeBefore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/column(column={column})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Column", "ColumnViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRangeAfter", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/columnsAfter", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRangeAfter", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRangeBefore", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/columnsBefore", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgColumnUserInsightUsedResourceMicrosoftGraphWorkbookRangeBefore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Columns", "Columns1", "ColumnsViaIdentity", "ColumnsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgCommitUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFile", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/commit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCommitUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCommitUserInsightSharedResourceMicrosoftGraphMobileAppContentFile", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/commit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCommitUserInsightSharedResourceMicrosoftGraphMobileAppContentFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCommitUserInsightTrendingResourceMicrosoftGraphMobileAppContentFile", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/commit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCommitUserInsightTrendingResourceMicrosoftGraphMobileAppContentFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCommitUserInsightUsedResourceMicrosoftGraphMobileAppContentFile", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/commit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCommitUserInsightUsedResourceMicrosoftGraphMobileAppContentFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgConsentDeviceManagementDataSharingConsentToDataSharing", "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/consentToDataSharing", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgConsentDeviceManagementDataSharingConsentToDataSharing", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", "Variants": [ "Consent", "ConsentViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDataSharingConsent", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Create2", "CreateExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/createOrGet", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/createOrGet", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgCustomDeviceManagementRoleAssignmentRoleScopeTag", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/hasCustomRoleScopeTag", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgCustomDeviceManagementRoleAssignmentRoleScopeTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Custom", "CustomViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgCustomDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/hasCustomRoleScopeTag", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgCustomDeviceManagementRoleScopeTag", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -103304,652 +103240,652 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Custom" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgDeclineGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDeclineGroupCalendarEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDeclineGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDeclineGroupCalendarEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline1", "DeclineExpanded1", "DeclineViaIdentity1", "DeclineViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDeclineGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDeclineGroupEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline1", "DeclineExpanded1", "DeclineViaIdentity1", "DeclineViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDeclineGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDeclineGroupEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDeclineUserEvent", "Uri": "/users/{user-id}/events/{event-id}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline1", "DeclineExpanded1", "DeclineViaIdentity1", "DeclineViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserEvent", "Uri": "/users/{user-id}/events/{event-id}/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline1", "DeclineExpanded1", "DeclineViaIdentity1", "DeclineViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserInsightSharedLastSharedMethodMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserInsightSharedResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserInsightTrendingResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/decline", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserInsightUsedResourceMicrosoftGraphScheduleChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserMailFolderMessageMicrosoftGraphEventMessageRequest", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserMailFolderMessageMicrosoftGraphEventMessageRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeclineUserMessageMicrosoftGraphEventMessageRequest", "Uri": "/users/{user-id}/messages/{message-id}/decline", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeclineUserMessageMicrosoftGraphEventMessageRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeprovisionDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeprovisionDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeprovisionDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeprovisionDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeprovisionDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeprovisionDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeprovisionDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeprovisionDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeprovisionDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeprovisionDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeprovisionUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDeprovisionUserManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDeviceManagementDeviceConfigurationAssignedAccessMultiModeProfile", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignedAccessMultiModeProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeviceManagementDeviceConfigurationAssignedAccessMultiModeProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Access", "AccessExpanded", "AccessViaIdentity", "AccessViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDeviceManagementDeviceConfigurationWindowsPrivacyAccessControl", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/windowsPrivacyAccessControls", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDeviceManagementDeviceConfigurationWindowsPrivacyAccessControl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Access1", "AccessExpanded1", "AccessViaIdentity1", "AccessViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDismissDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}/dismiss", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgDismissDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgDismissDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}/dismiss", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgDismissDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgDismissDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}/dismiss", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgDismissDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgDismissGroupCalendarEventReminder", "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDismissGroupCalendarEventReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Dismiss", "DismissViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDismissGroupCalendarEventReminder", "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDismissGroupCalendarEventReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Dismiss1", "DismissViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDismissGroupEventReminder", "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDismissGroupEventReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Dismiss1", "DismissViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDismissGroupEventReminder", "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgDismissGroupEventReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Dismiss", "DismissViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgDismissRiskyUser", "Uri": "/riskyUsers/dismiss", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgDismissRiskyUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Dismiss", "DismissExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgDismissUserEventInstanceReminder", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDismissUserEventInstanceReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Dismiss", "DismissViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDismissUserEventInstanceReminder", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDismissUserEventInstanceReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Dismiss1", "DismissViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDismissUserEventReminder", "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDismissUserEventReminder", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Dismiss1", "DismissViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDismissUserEventReminder", "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDismissUserEventReminder", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Dismiss", "DismissViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementComanagedDeviceShut", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementComanagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceShut", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceShut", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceShut", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Down1", "DownViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownDeviceManagementScriptDeviceRunStateManagedDeviceShut", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgDownDeviceManagementScriptDeviceRunStateManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Uri": "/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -103964,17 +103900,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Download" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Uri": "/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -103989,131 +103925,131 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Download1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgDownUserManagedDeviceShut", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDownUserManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Down1", "DownViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgDownUserManagedDeviceShut", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgDownUserManagedDeviceShut", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Down", "DownViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgEnrollWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets/enrollAssets", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Invoke-MgEnrollWindowsUpdatesUpdatableAsset", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enroll", "EnrollExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Invoke-MgEnrollWindowsUpdatesUpdatableAssetById", "Uri": "/admin/windows/updates/updatableAssets/enrollAssetsById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Invoke-MgEnrollWindowsUpdatesUpdatableAssetById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Enroll1", "EnrollExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Invoke-MgEntireUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/entireColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgEntireUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Entire", "EntireViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgEntireUserInsightSharedResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/entireColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgEntireUserInsightSharedResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Entire", "EntireViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgEntireUserInsightTrendingResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/entireColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgEntireUserInsightTrendingResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Entire", "EntireViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgEntireUserInsightUsedResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/entireColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgEntireUserInsightUsedResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Entire", "EntireViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/estimateStatistics", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -104128,1335 +104064,1335 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Estimate", "EstimateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Invoke-MgExecuteDeviceManagementComanagedDeviceAction", "Uri": "/deviceManagement/comanagedDevices/executeAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExecuteDeviceManagementComanagedDeviceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", "Variants": [ "Execute", "ExecuteExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExecuteDeviceManagementDetectedAppManagedDeviceAction", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/executeAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExecuteDeviceManagementDetectedAppManagedDeviceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", "Variants": [ "Execute", "ExecuteExpanded", "ExecuteViaIdentity", "ExecuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExecuteDeviceManagementManagedDeviceAction", "Uri": "/deviceManagement/managedDevices/executeAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExecuteDeviceManagementManagedDeviceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", "Variants": [ "Execute", "ExecuteExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExecuteDeviceManagementWindowDriverUpdateProfileAction", "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/executeAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExecuteDeviceManagementWindowDriverUpdateProfileAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkDriverActionResult", "Variants": [ "Execute", "ExecuteExpanded", "ExecuteViaIdentity", "ExecuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBulkDriverActionResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExecuteUserManagedDeviceAction", "Uri": "/users/{user-id}/managedDevices/executeAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgExecuteUserManagedDeviceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", "Variants": [ "Execute", "ExecuteExpanded", "ExecuteViaIdentity", "ExecuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgExperienceDeviceManagement", "Uri": "/deviceManagement/userExperienceAnalyticsSummarizeWorkFromAnywhereDevices", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgExperienceDeviceManagement", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevicesSummary", "Variants": [ "Experience" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevicesSummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationFeatureUpdatePause", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/extendFeatureUpdatesPause", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationFeatureUpdatePause", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Extend", "ExtendViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationQualityUpdatePause", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/extendQualityUpdatesPause", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationQualityUpdatePause", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Extend", "ExtendViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationFeatureUpdatePause", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/extendFeatureUpdatesPause", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationFeatureUpdatePause", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Extend", "ExtendViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationQualityUpdatePause", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/extendQualityUpdatesPause", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgExtendDeviceManagementDeviceConfigurationMicrosoftGraphWindowUpdateForBusinessConfigurationQualityUpdatePause", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Extend", "ExtendViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgExtractInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels/extractLabel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgExtractInformationProtectionPolicyLabel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", "Variants": [ "Extract", "ExtractExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgFilterApplicationSynchronizationJobSchemaOperator", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFilterApplicationSynchronizationJobSchemaOperator", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFilterOperatorSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFilterOperatorSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on={on})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage1", "Variants": [ "Filter1", "FilterViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage1", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignment", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval1", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval1", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on={on})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Filter1", "FilterViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on={on})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment1", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment1", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on={on})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterEntitlementManagementCatalogAccessPackage", "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages/filterByCurrentUser(on={on})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterEntitlementManagementCatalogAccessPackage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage1", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage1", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFilterOperatorSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphFilterOperatorSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFilterUserAppConsentRequestForApproval", "Uri": "/users/{user-id}/appConsentRequestsForApproval/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgFilterUserAppConsentRequestForApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppConsentRequest", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgFilterUserAppConsentRequestForApprovalUserConsentRequest", "Uri": "/users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgFilterUserAppConsentRequestForApprovalUserConsentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserConsentRequest", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgFilterUserApproval", "Uri": "/users/{user-id}/approvals/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgFilterUserApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgFilterUserPendingAccessReviewInstance", "Uri": "/users/{user-id}/pendingAccessReviewInstances/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgFilterUserPendingAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstance", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgFilterUserPendingAccessReviewInstanceDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on={on})", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgFilterUserPendingAccessReviewInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Filter", "FilterViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals/{journal-id}/post", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Invoke-MgFinancialCompanyJournal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Post", "PostViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Invoke-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/post", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Invoke-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Post", "PostViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Invoke-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/post", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Invoke-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Post", "PostViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Invoke-MgFinancialCompanySaleInvoiceAndSend", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/postAndSend", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Invoke-MgFinancialCompanySaleInvoiceAndSend", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Post", "PostViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Invoke-MgForceDomainDelete", "Uri": "/domains/{domain-id}/forceDelete", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgForceDomainDelete", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Force", "ForceExpanded", "ForceViaIdentity", "ForceViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgForceDomainDelete", "Uri": "/domains/{domain-id}/forceDelete", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgForceDomainDelete", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Force1", "ForceExpanded1", "ForceViaIdentity1", "ForceViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgForwardGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupCalendarEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupCalendarEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupConversationThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupConversationThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgForwardUserEvent", "Uri": "/users/{user-id}/events/{event-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserEvent", "Uri": "/users/{user-id}/events/{event-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserEvent", "Permissions": { "Name": "Calendars.Read", "Description": "Read your calendars ", "FullDescription": "Allows the app to read events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/forward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Forward1", "ForwardExpanded1", "ForwardViaIdentity1", "ForwardViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgForwardUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/forward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgForwardUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgFunctionApplicationSynchronizationJobSchema", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFunctionApplicationSynchronizationJobSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", "Variants": [ "Functions", "FunctionsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", "Variants": [ "Functions", "FunctionsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", "Variants": [ "Functions", "FunctionsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema", "Permissions": { "Name": "Directory.Read.All", "Description": "Read directory data", "FullDescription": "Allows the app to read data in your organization's directory.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", "Variants": [ "Functions", "FunctionsViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", + "Module": "Applications" }, { - "Command": "Invoke-MgHasDeviceAppMgtAndroidManagedAppProtectionPayloadLink", "Uri": "/deviceAppManagement/androidManagedAppProtections/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtAndroidManagedAppProtectionPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceAppMgtiOSLobAppProvisioningConfigurationPayloadLink", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtiOSLobAppProvisioningConfigurationPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceAppMgtiOSManagedAppProtectionPayloadLink", "Uri": "/deviceAppManagement/iosManagedAppProtections/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtiOSManagedAppProtectionPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceAppMgtMdmWindowInformationProtectionPolicyPayloadLink", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtMdmWindowInformationProtectionPolicyPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceAppMgtMobileAppPayloadLink", "Uri": "/deviceAppManagement/mobileApps/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtMobileAppPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceAppMgtTargetedManagedAppConfigurationPayloadLink", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgHasDeviceAppMgtTargetedManagedAppConfigurationPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgHasDeviceManagementDeviceCompliancePolicyPayloadLink", "Uri": "/deviceManagement/deviceCompliancePolicies/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgHasDeviceManagementDeviceCompliancePolicyPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgHasDeviceManagementDeviceConfigurationPayloadLink", "Uri": "/deviceManagement/deviceConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgHasDeviceManagementDeviceConfigurationPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgHasDeviceManagementDeviceEnrollmentConfigurationPayloadLink", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgHasDeviceManagementDeviceEnrollmentConfigurationPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgHasDeviceManagementScriptPayloadLink", "Uri": "/deviceManagement/deviceManagementScripts/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgHasDeviceManagementScriptPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgHasDeviceManagementWindowAutopilotDeploymentProfilePayloadLink", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgHasDeviceManagementWindowAutopilotDeploymentProfilePayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgHasUserDeviceEnrollmentConfigurationPayloadLink", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgHasUserDeviceEnrollmentConfigurationPayloadLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", "Variants": [ "Has", "HasExpanded", "HasViaIdentity", "HasViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgInstantiateApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}/instantiate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgInstantiateApplicationTemplate", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -105471,20 +105407,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationServicePrincipal1", "Variants": [ "Instantiate", "InstantiateExpanded", "InstantiateViaIdentity", "InstantiateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApplicationServicePrincipal1", + "Module": "Applications" }, { - "Command": "Invoke-MgInstantiateApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}/instantiate", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgInstantiateApplicationTemplate", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -105499,115 +105435,115 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationServicePrincipal", "Variants": [ "Instantiate1", "InstantiateExpanded1", "InstantiateViaIdentity1", "InstantiateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphApplicationServicePrincipal", + "Module": "Applications" }, { - "Command": "Invoke-MgIntersectionUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/intersection(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgIntersectionUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Intersection", "IntersectionViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgIntersectionUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/intersection(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgIntersectionUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Intersection", "IntersectionViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgIntersectionUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/intersection(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgIntersectionUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Intersection", "IntersectionViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgIntersectionUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/intersection(anotherRange='{anotherRange}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgIntersectionUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Intersection", "IntersectionViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgInvalidateUserRefreshToken", "Uri": "/users/{user-id}/invalidateAllRefreshTokens", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgInvalidateUserRefreshToken", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Invalidate", "InvalidateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgInviteCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/invite", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgInviteCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInviteParticipantsOperation1", "Variants": [ "Invite1", "InviteExpanded1", "InviteViaIdentity1", "InviteViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphInviteParticipantsOperation1", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgInviteCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/invite", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgInviteCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInviteParticipantsOperation", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInviteParticipantsOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgIsDeviceManagementDeviceHealthScriptGlobalScriptAvailable", "Uri": "/deviceManagement/deviceHealthScripts/areGlobalScriptsAvailable", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgIsDeviceManagementDeviceHealthScriptGlobalScriptAvailable", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -105622,199 +105558,199 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Are" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgKeepCommunicationCallAlive", "Uri": "/communications/calls/{call-id}/keepAlive", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgKeepCommunicationCallAlive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Keep1", "KeepViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgKeepCommunicationCallAlive", "Uri": "/communications/calls/{call-id}/keepAlive", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgKeepCommunicationCallAlive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Keep", "KeepViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeCell", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/lastCell", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeCell", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/lastColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeRow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/lastRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeCell", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/lastCell", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeCell", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/lastColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeRow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/lastRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightSharedResourceMicrosoftGraphWorkbookRangeRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeCell", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/lastCell", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeCell", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/lastColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeRow", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/lastRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightTrendingResourceMicrosoftGraphWorkbookRangeRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeCell", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/lastCell", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeCell", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeColumn", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/lastColumn", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeRow", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/lastRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgLastUserInsightUsedResourceMicrosoftGraphWorkbookRangeRow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Last", "LastViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgLicenseUser", "Uri": "/users/{user-id}/reprocessLicenseAssignment", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgLicenseUser", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -105829,18 +105765,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "License", "LicenseViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgLicenseUser", "Uri": "/users/{user-id}/reprocessLicenseAssignment", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgLicenseUser", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -105855,195 +105791,195 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "License1", "LicenseViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", "Uri": "/communications/calls/logTeleconferenceDeviceQuality", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Log1", "LogExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", "Uri": "/communications/calls/logTeleconferenceDeviceQuality", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Log", "LogExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgLogoutDeviceManagementComanagedDeviceSharedAppleDeviceActiveUser", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgLogoutDeviceManagementComanagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Logout", "LogoutViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgLogoutDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgLogoutDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Logout", "LogoutViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgLogoutDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgLogoutDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceSharedAppleDeviceActiveUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Logout", "LogoutViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Logout", "LogoutViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Logout1", "LogoutViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Logout1", "LogoutViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Logout", "LogoutViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgMarkChatRead", "Uri": "/chats/{chat-id}/markChatReadForUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgMarkChatRead", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgMarkChatUnread", "Uri": "/chats/{chat-id}/markChatUnreadForUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgMarkChatUnread", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgMessageChat", "Uri": "/chats/allMessages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Invoke-MgMessageChat", "Permissions": [ { "Name": "Chat.Read", @@ -106064,17 +106000,17 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Messages" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Invoke-MgMessageTeam", "Uri": "/teams/allMessages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Invoke-MgMessageTeam", "Permissions": [ { "Name": "Directory.Read.All", @@ -106119,17 +106055,17 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Messages" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Invoke-MgMessageTeamChannel", "Uri": "/teams/{team-id}/channels/allMessages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Teams", + "Command": "Invoke-MgMessageTeamChannel", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -106174,351 +106110,351 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Messages", "MessagesViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "Invoke-MgMuteAllCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgMuteAllCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", "Variants": [ "Mute1", "MuteExpanded1", "MuteViaIdentity1", "MuteViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgMuteCommunicationCall", "Uri": "/communications/calls/{call-id}/mute", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgMuteCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", "Variants": [ "Mute1", "MuteExpanded1", "MuteViaIdentity1", "MuteViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgMuteCommunicationCall", "Uri": "/communications/calls/{call-id}/mute", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgMuteCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", "Variants": [ "Mute", "MuteExpanded", "MuteViaIdentity", "MuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgMuteCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/muteAll", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgMuteCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantsOperation", "Variants": [ "Mute2", "MuteExpanded2", "MuteViaIdentity2", "MuteViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphMuteParticipantsOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgMuteCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgMuteCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", "Variants": [ "Mute", "MuteExpanded", "MuteViaIdentity", "MuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgMyPrivilegedApprovalRequest", "Uri": "/privilegedApproval/myRequests", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgMyPrivilegedApprovalRequest", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", "Variants": [ "My" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedApproval", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgMyPrivilegedRoleAssignment", "Uri": "/privilegedRoleAssignments/my", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgMyPrivilegedRoleAssignment", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "My" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgMyPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests/my", + "ApiVersion": "beta", "Method": "GET", - "Module": "Identity.Governance", + "Command": "Invoke-MgMyPrivilegedRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "My" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgOffsetUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgOffsetUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Offset", "OffsetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgOffsetUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgOffsetUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Offset", "OffsetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgOffsetUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgOffsetUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Offset", "OffsetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgOffsetUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgOffsetUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Offset", "OffsetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgOverrideDeviceManagementComanagedDeviceComplianceState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgOverrideDeviceManagementComanagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgOverrideDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceComplianceState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgOverrideDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgOverrideDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceComplianceState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgOverrideDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgOverrideDeviceManagementManagedDeviceComplianceState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgOverrideDeviceManagementManagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgOverrideDeviceManagementScriptDeviceRunStateManagedDeviceComplianceState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgOverrideDeviceManagementScriptDeviceRunStateManagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgOverrideUserManagedDeviceComplianceState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgOverrideUserManagedDeviceComplianceState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphParseExpressionResponse", + "Module": "Applications" }, { - "Command": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphParseExpressionResponse", + "Module": "Applications" }, { - "Command": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphParseExpressionResponse", + "Module": "Applications" }, { - "Command": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphParseExpressionResponse", + "Module": "Applications" }, { - "Command": "Invoke-MgPendingUserApp", "Uri": "/users/{user-id}/getManagedDevicesWithFailedOrPendingApps", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgPendingUserApp", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -106533,294 +106469,292 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState", "Variants": [ "Pending", "PendingViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgPlayCommunicationCallPrompt", "Uri": "/communications/calls/{call-id}/playPrompt", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgPlayCommunicationCallPrompt", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlayPromptOperation1", "Variants": [ "Play1", "PlayExpanded1", "PlayViaIdentity1", "PlayViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPlayPromptOperation1", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgPlayCommunicationCallPrompt", "Uri": "/communications/calls/{call-id}/playPrompt", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgPlayCommunicationCallPrompt", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlayPromptOperation", "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlayPromptOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgPlayDeviceManagementComanagedDeviceLostModeSound", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgPlayDeviceManagementComanagedDeviceLostModeSound", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgPlayDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostModeSound", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgPlayDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceLostModeSound", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgPlayDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostModeSound", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgPlayDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLostModeSound", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgPlayDeviceManagementManagedDeviceLostModeSound", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgPlayDeviceManagementManagedDeviceLostModeSound", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgPlayDeviceManagementScriptDeviceRunStateManagedDeviceLostModeSound", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgPlayDeviceManagementScriptDeviceRunStateManagedDeviceLostModeSound", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgPlayUserManagedDeviceLostModeSound", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgPlayUserManagedDeviceLostModeSound", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Play", - "PlayExpanded", - "PlayViaIdentity", - "PlayViaIdentityExpanded" - ] + "PlayViaIdentity" + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgPostponeDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}/postpone", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgPostponeDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgPostponeDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}/postpone", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgPostponeDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgPostponeDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}/postpone", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgPostponeDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgPreviewGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Method": "GET", - "Module": "Groups", + "Command": "Invoke-MgPreviewGroupOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview", "PreviewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Groups" }, { - "Command": "Invoke-MgPreviewGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Groups", + "Command": "Invoke-MgPreviewGroupOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview1", "PreviewViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Groups" }, { - "Command": "Invoke-MgPreviewSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Invoke-MgPreviewSiteOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview", "PreviewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Sites" }, { - "Command": "Invoke-MgPreviewSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Invoke-MgPreviewSiteOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview1", "PreviewViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Sites" }, { - "Command": "Invoke-MgPreviewUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgPreviewUserOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview1", "PreviewViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgPreviewUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgPreviewUserOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", "Variants": [ "Preview", "PreviewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePagePreview", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgQueryDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles/queryByPlatformType", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgQueryDeviceManagementResourceAccessProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", "Variants": [ "Query", "QueryExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgQuerySearch", "Uri": "/search/query", + "ApiVersion": "beta", "Method": "POST", - "Module": "Search", + "Command": "Invoke-MgQuerySearch", "Permissions": [ { "Name": "Calendars.Read", @@ -106853,18 +106787,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchResponse1", "Variants": [ "Query", "QueryExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSearchResponse1", + "Module": "Search" }, { - "Command": "Invoke-MgQuerySearch", "Uri": "/search/query", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Search", + "Command": "Invoke-MgQuerySearch", "Permissions": [ { "Name": "Calendars.Read", @@ -106897,247 +106831,221 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchResponse", "Variants": [ "Query1", "QueryExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSearchResponse", + "Module": "Search" }, { - "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeResized", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeResized", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeUsed", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/usedRange", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeUsed", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "Range1", "RangeViaIdentity", "RangeViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeView", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/range", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeView", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeResized", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeResized", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeUsed", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/usedRange", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeUsed", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "Range1", "RangeViaIdentity", "RangeViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeView", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/range", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightSharedResourceMicrosoftGraphWorkbookRangeView", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeResized", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeResized", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeUsed", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/usedRange", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeUsed", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "Range1", "RangeViaIdentity", "RangeViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeView", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/range", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightTrendingResourceMicrosoftGraphWorkbookRangeView", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeResized", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeResized", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeUsed", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/usedRange", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeUsed", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "Range1", "RangeViaIdentity", "RangeViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeView", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/range", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRangeUserInsightUsedResourceMicrosoftGraphWorkbookRangeView", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Range", "RangeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgReactivateDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}/reactivate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgReactivateDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Reactivate", "ReactivateViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgReactivateDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}/reactivate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgReactivateDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Reactivate", "ReactivateViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgReactivateDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}/reactivate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Invoke-MgReactivateDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Reactivate", "ReactivateViaIdentity" - ] - }, - { - "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Method": "POST", - "Module": "Education", - "Permissions": [ - { - "Name": "EduAssignments.ReadWrite", - "Description": "View and modify your assignments and grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "IsAdmin": true - }, - { - "Name": "EduAssignments.ReadWriteBasic", - "Description": "View and modify your assignments without grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "IsAdmin": true - } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Reassign1", - "ReassignViaIdentity1" - ] + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -107152,428 +107060,402 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Reassign", "ReassignViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Invoke-MgReassignEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReassignEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Reassign", "ReassignViaIdentity" - ] - }, - { - "Command": "Invoke-MgReassignEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Reassign1", - "ReassignViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgReassignEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReassignEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Reassign", "ReassignViaIdentity" - ] - }, - { - "Command": "Invoke-MgReassignEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Reassign1", - "ReassignViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgRecentDrive", "Uri": "/drives/{drive-id}/recent", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Invoke-MgRecentDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Recent", "RecentViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Invoke-MgRecentDrive", "Uri": "/drives/{drive-id}/recent", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Invoke-MgRecentDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Recent1", "RecentViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Invoke-MgRecentUserActivity", "Uri": "/users/{user-id}/activities/recent", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRecentUserActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", "Variants": [ "Recent", "RecentViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRecentUserActivity", "Uri": "/users/{user-id}/activities/recent", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRecentUserActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity1", "Variants": [ "Recent1", "RecentViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity1", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRecordCommunicationCall", "Uri": "/communications/calls/{call-id}/record", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRecordCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecordOperation1", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecordOperation1", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRecordCommunicationCallResponse", "Uri": "/communications/calls/{call-id}/recordResponse", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRecordCommunicationCallResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecordOperation1", "Variants": [ "Record1", "RecordExpanded1", "RecordViaIdentity1", "RecordViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphRecordOperation1", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRecordCommunicationCallResponse", "Uri": "/communications/calls/{call-id}/recordResponse", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRecordCommunicationCallResponse", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecordOperation", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecordOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRecordIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions/recordAllDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgRecordIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Record", "RecordExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgRecordIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/recordAllDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgRecordIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgRecordUserPendingAccessReviewInstanceDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/recordAllDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRecordUserPendingAccessReviewInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRedirectCommunicationCall", "Uri": "/communications/calls/{call-id}/redirect", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRedirectCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Redirect1", "RedirectExpanded1", "RedirectViaIdentity1", "RedirectViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRedirectCommunicationCall", "Uri": "/communications/calls/{call-id}/redirect", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRedirectCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRedirectUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/redirect", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRedirectUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintJob", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRedirectUserInsightSharedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/redirect", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRedirectUserInsightSharedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintJob", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRedirectUserInsightTrendingResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/redirect", - "Method": "POST", - "Module": "Users.Actions", - "Permissions": [], "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", + "Method": "POST", + "Command": "Invoke-MgRedirectUserInsightTrendingResourceMicrosoftGraphPrintJob", + "Permissions": [], "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintJob", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRedirectUserInsightUsedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/redirect", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRedirectUserInsightUsedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintJob", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReenableDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReenableDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgReenableDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReenableDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgReenableDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReenableDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgReenableDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReenableDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgReenableDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReenableDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgReenableUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReenableUserManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reenable", "ReenableViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRejectCommunicationCall", "Uri": "/communications/calls/{call-id}/reject", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRejectCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reject1", "RejectExpanded1", "RejectViaIdentity1", "RejectViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRejectCommunicationCall", "Uri": "/communications/calls/{call-id}/reject", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgRejectCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reject", "RejectExpanded", "RejectViaIdentity", "RejectViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgRenewGroup", "Uri": "/groups/{group-id}/renew", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgRenewGroup", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -107588,18 +107470,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Renew", "RenewViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgRenewGroup", "Uri": "/groups/{group-id}/renew", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgRenewGroup", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -107614,83 +107496,83 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Renew1", "RenewViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgRenewGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/renewGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgRenewGroupLifecyclePolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Renew", "RenewExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgRenewUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFileUpload", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/renewUpload", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRenewUserInsightSharedLastSharedMethodMicrosoftGraphMobileAppContentFileUpload", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Renew", "RenewViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRenewUserInsightSharedResourceMicrosoftGraphMobileAppContentFileUpload", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/renewUpload", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRenewUserInsightSharedResourceMicrosoftGraphMobileAppContentFileUpload", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Renew", "RenewViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRenewUserInsightTrendingResourceMicrosoftGraphMobileAppContentFileUpload", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/renewUpload", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRenewUserInsightTrendingResourceMicrosoftGraphMobileAppContentFileUpload", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Renew", "RenewViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRenewUserInsightUsedResourceMicrosoftGraphMobileAppContentFileUpload", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/renewUpload", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRenewUserInsightUsedResourceMicrosoftGraphMobileAppContentFileUpload", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Renew", "RenewViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReopenComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases/{case-id}/reopen", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Invoke-MgReopenComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -107705,557 +107587,557 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reopen", "ReopenViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Invoke-MgReplyAllUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyAllUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply3", "ReplyExpanded3", "ReplyViaIdentity3", "ReplyViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyAllUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyAllUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyAllUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/replyAll", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyAllUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply3", "ReplyExpanded3", "ReplyViaIdentity3", "ReplyViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyAllUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/replyAll", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyAllUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThreadPost", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgReplyUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply2", "ReplyExpanded2", "ReplyViaIdentity2", "ReplyViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyUserMailFolderMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/reply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reply2", "ReplyExpanded2", "ReplyViaIdentity2", "ReplyViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReplyUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/reply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgReplyUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reprovision", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reprovision", "ReprovisionExpanded", "ReprovisionViaIdentity", "ReprovisionViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Retire1", "RetireViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRetireDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRetireUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRetireUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Retire1", "RetireViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRetireUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRetireUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Retire", "RetireViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -108270,18 +108152,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Return1", "ReturnViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -108296,850 +108178,824 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Return", "ReturnViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Invoke-MgReturnEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReturnEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Return", "ReturnViaIdentity" - ] - }, - { - "Command": "Invoke-MgReturnEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Return1", - "ReturnViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgReturnEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgReturnEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Return", "ReturnViaIdentity" - ] - }, - { - "Command": "Invoke-MgReturnEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Return1", - "ReturnViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}/reupload", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reupload", "ReuploadViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRoleManagementDirectorySchedule", "Uri": "/roleManagement/directory/roleSchedules(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgRoleManagementDirectorySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", "Variants": [ "Role", "RoleViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgRoleManagementEntitlementManagementSchedule", "Uri": "/roleManagement/entitlementManagement/roleSchedules(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgRoleManagementEntitlementManagementSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", "Variants": [ "Role", "RoleViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgRotateDeviceManagementComanagedDeviceBitLockerKey", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementComanagedDeviceBitLockerKey", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementComanagedDeviceFileVaultKey", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementComanagedDeviceFileVaultKey", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceBitLockerKey", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceBitLockerKey", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceBitLockerKey", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceBitLockerKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementManagedDeviceBitLockerKey", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementManagedDeviceBitLockerKey", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementManagedDeviceFileVaultKey", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementManagedDeviceFileVaultKey", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementScriptDeviceRunStateManagedDeviceBitLockerKey", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementScriptDeviceRunStateManagedDeviceBitLockerKey", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateDeviceManagementScriptDeviceRunStateManagedDeviceFileVaultKey", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgRotateDeviceManagementScriptDeviceRunStateManagedDeviceFileVaultKey", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgRotateUserManagedDeviceBitLockerKey", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRotateUserManagedDeviceBitLockerKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRotateUserManagedDeviceFileVaultKey", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgRotateUserManagedDeviceFileVaultKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rotate", "RotateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/row(row={row})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeAbove", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/rowsAbove", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeAbove", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeBelow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/rowsBelow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeBelow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeEntire", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/entireRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeEntire", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/row(row={row})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeAbove", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/rowsAbove", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeAbove", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeBelow", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/rowsBelow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeBelow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeEntire", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/entireRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightSharedResourceMicrosoftGraphWorkbookRangeEntire", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/row(row={row})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeAbove", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/rowsAbove", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeAbove", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeBelow", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/rowsBelow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeBelow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeEntire", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/entireRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightTrendingResourceMicrosoftGraphWorkbookRangeEntire", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/row(row={row})", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeAbove", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/rowsAbove", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeAbove", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeBelow", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/rowsBelow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeBelow", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Rows", "Rows1", "RowsViaIdentity", "RowsViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeEntire", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/entireRow", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgRowUserInsightUsedResourceMicrosoftGraphWorkbookRangeEntire", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRange", "Variants": [ "Row", "RowViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRange", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgScanDeviceManagementComanagedDeviceWindowDefender", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementComanagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDefender", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDefender", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDefender", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowDefender", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowDefender", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Scan1", "ScanExpanded1", "ScanViaIdentity1", "ScanViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanDeviceManagementScriptDeviceRunStateManagedDeviceWindowDefender", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScanDeviceManagementScriptDeviceRunStateManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScanUserManagedDeviceWindowDefender", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgScanUserManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scan1", "ScanExpanded1", "ScanViaIdentity1", "ScanViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgScanUserManagedDeviceWindowDefender", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgScanUserManagedDeviceWindowDefender", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Schedule1", "ScheduleExpanded1", "ScheduleViaIdentity1", "ScheduleViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Schedule", "ScheduleExpanded", "ScheduleViaIdentity", "ScheduleViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgScheduleRoleManagementDirectory", "Uri": "/roleManagement/directory/roleScheduleInstances(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgScheduleRoleManagementDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", "Variants": [ "Schedule", "ScheduleViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgScheduleRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement/roleScheduleInstances(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Enrolment", + "Command": "Invoke-MgScheduleRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", "Variants": [ "Schedule", "ScheduleViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Invoke-MgScopedDeviceManagement", "Uri": "/deviceManagement/scopedForResource(resource='{resource}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgScopedDeviceManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Scoped", "ScopedViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgSelfPrivilegedRoleActivate", "Uri": "/privilegedRoles/{privilegedRole-id}/selfActivate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgSelfPrivilegedRoleActivate", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Self", "SelfExpanded", "SelfViaIdentity", "SelfViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgSelfPrivilegedRoleDeactivate", "Uri": "/privilegedRoles/{privilegedRole-id}/selfDeactivate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Invoke-MgSelfPrivilegedRoleDeactivate", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Self", "SelfViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "Invoke-MgSharedDrive", "Uri": "/drives/{drive-id}/sharedWithMe", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Invoke-MgSharedDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Shared", "SharedViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Invoke-MgSharedDrive", "Uri": "/drives/{drive-id}/sharedWithMe", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Invoke-MgSharedDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Shared1", "SharedViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Invoke-MgShareDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/shareForSchoolDataSyncService", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgShareDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Share", "ShareViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgShareTeamSchedule", "Uri": "/teams/{team-id}/schedule/share", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgShareTeamSchedule", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -109154,20 +109010,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Share", "ShareExpanded", "ShareViaIdentity", "ShareViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgShareTeamSchedule", "Uri": "/teams/{team-id}/schedule/share", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgShareTeamSchedule", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -109182,281 +109038,281 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Share1", "ShareExpanded1", "ShareViaIdentity1", "ShareViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgSignInformationProtectionDigest", "Uri": "/informationProtection/signDigest", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgSignInformationProtectionDigest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSigningResult", "Variants": [ "Sign", "SignExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSigningResult", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Snooze1", "SnoozeExpanded1", "SnoozeViaIdentity1", "SnoozeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSnoozeGroupEventReminder", "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSnoozeGroupEventReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Snooze1", "SnoozeExpanded1", "SnoozeViaIdentity1", "SnoozeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSnoozeGroupEventReminder", "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSnoozeGroupEventReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSnoozeUserEventInstanceReminder", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgSnoozeUserEventInstanceReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgSnoozeUserEventInstanceReminder", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgSnoozeUserEventInstanceReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Snooze1", "SnoozeExpanded1", "SnoozeViaIdentity1", "SnoozeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgSnoozeUserEventReminder", "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgSnoozeUserEventReminder", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Snooze1", "SnoozeExpanded1", "SnoozeViaIdentity1", "SnoozeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgSnoozeUserEventReminder", "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgSnoozeUserEventReminder", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgSubscribeCommunicationCallToTone", "Uri": "/communications/calls/{call-id}/subscribeToTone", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgSubscribeCommunicationCallToTone", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribeToToneOperation", "Variants": [ "Subscribe1", "SubscribeExpanded1", "SubscribeViaIdentity1", "SubscribeViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscribeToToneOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgSubscribeCommunicationCallToTone", "Uri": "/communications/calls/{call-id}/subscribeToTone", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgSubscribeCommunicationCallToTone", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribeToToneOperation", "Variants": [ "Subscribe", "SubscribeExpanded", "SubscribeViaIdentity", "SubscribeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSubscribeToToneOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgSubscribeGroup", "Uri": "/groups/{group-id}/subscribeByMail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSubscribeGroup", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Subscribe", "SubscribeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSubscribeGroup", "Uri": "/groups/{group-id}/subscribeByMail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgSubscribeGroup", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Subscribe1", "SubscribeViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/summarizeDevicePerformanceDevices(summarizeBy={summarizeBy})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", "Variants": [ "Summarize", "SummarizeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticRegressionSummaryDeviceRegressionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/summarizeDeviceRegressionPerformance(summarizeBy={summarizeBy})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticRegressionSummaryDeviceRegressionPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRegressionSummary", "Variants": [ "Summarize", "SummarizeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRegressionSummary", + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticRemoteConnectionDeviceRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/summarizeDeviceRemoteConnection(summarizeBy={summarizeBy})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticRemoteConnectionDeviceRemoteConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", "Variants": [ "Summarize", "SummarizeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticResourcePerformanceDeviceResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/summarizeDeviceResourcePerformance(summarizeBy={summarizeBy})", + "ApiVersion": "beta", "Method": "GET", - "Module": "DeviceManagement.Functions", + "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticResourcePerformanceDeviceResourcePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", "Variants": [ "Summarize", "SummarizeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", + "Module": "DeviceManagement.Functions" }, { - "Command": "Invoke-MgSupportedUserOutlookLanguage", "Uri": "/users/{user-id}/outlook/supportedLanguages", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgSupportedUserOutlookLanguage", "Permissions": [ { "Name": "User.Read", @@ -109471,18 +109327,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocaleInfo", "Variants": [ "Supported1", "SupportedViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphLocaleInfo", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgSupportedUserOutlookLanguage", "Uri": "/users/{user-id}/outlook/supportedLanguages", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgSupportedUserOutlookLanguage", "Permissions": [ { "Name": "User.Read", @@ -109497,378 +109353,378 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocaleInfo", "Variants": [ "Supported", "SupportedViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphLocaleInfo", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphManagedAppProtectionApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphManagedAppProtectionApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationAppliedPolicyApp", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationAppliedPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationAppliedPolicyApp", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationAppliedPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationIntendedPolicyApp", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationIntendedPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationIntendedPolicyApp", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtManagedAppRegistrationIntendedPolicyApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Invoke-MgTargetDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target1", "TargetExpanded1", "TargetViaIdentity1", "TargetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Invoke-MgTargetUserInsightSharedLastSharedMethodMicrosoftGraphManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightSharedLastSharedMethodMicrosoftGraphManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightSharedLastSharedMethodMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightSharedLastSharedMethodMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightSharedResourceMicrosoftGraphManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightSharedResourceMicrosoftGraphManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightSharedResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightSharedResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightTrendingResourceMicrosoftGraphManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightTrendingResourceMicrosoftGraphManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightTrendingResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightTrendingResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightUsedResourceMicrosoftGraphManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightUsedResourceMicrosoftGraphManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTargetUserInsightUsedResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/targetApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTargetUserInsightUsedResourceMicrosoftGraphTargetedManagedAppProtectionApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTimeUserOutlook", "Uri": "/users/{user-id}/outlook/supportedTimeZones", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgTimeUserOutlook", "Permissions": [ { "Name": "User.Read", @@ -109883,20 +109739,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeZoneInformation", "Variants": [ "Time2", "Time3", "TimeViaIdentity2", "TimeViaIdentity3" - ] + ], + "OutputType": "IMicrosoftGraphTimeZoneInformation", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgTimeUserOutlook", "Uri": "/users/{user-id}/outlook/supportedTimeZones", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgTimeUserOutlook", "Permissions": [ { "Name": "User.Read", @@ -109911,20 +109767,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeZoneInformation", "Variants": [ "Time", "Time1", "TimeViaIdentity", "TimeViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphTimeZoneInformation", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgTranslateUserExchangeId", "Uri": "/users/{user-id}/translateExchangeIds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTranslateUserExchangeId", "Permissions": [ { "Name": "User.Read", @@ -109957,20 +109813,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConvertIdResult", "Variants": [ "Translate", "TranslateExpanded", "TranslateViaIdentity", "TranslateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConvertIdResult", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTranslateUserExchangeId", "Uri": "/users/{user-id}/translateExchangeIds", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgTranslateUserExchangeId", "Permissions": [ { "Name": "User.Read", @@ -110003,33 +109859,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConvertIdResult", "Variants": [ "Translate1", "TranslateExpanded1", "TranslateViaIdentity1", "TranslateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConvertIdResult", + "Module": "Users.Actions" }, { - "Command": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/troubleshoot", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Troubleshoot", "TroubleshootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnarchiveTeam", "Uri": "/teams/{team-id}/unarchive", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgUnarchiveTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -110050,18 +109906,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unarchive", "UnarchiveViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgUnarchiveTeam", "Uri": "/teams/{team-id}/unarchive", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgUnarchiveTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -110082,31 +109938,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unarchive1", "UnarchiveViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceUserFromDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceUserFromDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unassign", "UnassignViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeviceIdentityUserFromDevice", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeviceIdentityUserFromDevice", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -110121,18 +109977,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unassign", "UnassignViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeviceIdentityUserFromDevice", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnassignDeviceManagementWindowAutopilotDeviceIdentityUserFromDevice", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -110147,193 +110003,193 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unassign1", "UnassignViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnbindDeviceManagementAndroidForWorkSetting", "Uri": "/deviceManagement/androidForWorkSettings/unbind", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnbindDeviceManagementAndroidForWorkSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unbind" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnbindDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/unbind", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnbindDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unbind" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnenrollWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets/unenrollAssets", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Invoke-MgUnenrollWindowsUpdatesUpdatableAsset", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unenroll", "UnenrollExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Invoke-MgUnenrollWindowsUpdatesUpdatableAssetById", "Uri": "/admin/windows/updates/updatableAssets/unenrollAssetsById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Invoke-MgUnenrollWindowsUpdatesUpdatableAssetById", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unenroll1", "UnenrollExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Invoke-MgUnhideChat", "Uri": "/chats/{chat-id}/unhideForUser", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Invoke-MgUnhideChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unhide", "UnhideExpanded", "UnhideViaIdentity", "UnhideViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Invoke-MgUnmergeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/unmerge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnmergeUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unmerge", "UnmergeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUnmergeUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/unmerge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnmergeUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unmerge", "UnmergeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUnmergeUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/unmerge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnmergeUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unmerge", "UnmergeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUnmergeUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/unmerge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnmergeUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unmerge", "UnmergeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUnmuteCommunicationCall", "Uri": "/communications/calls/{call-id}/unmute", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgUnmuteCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", "Variants": [ "Unmute1", "UnmuteExpanded1", "UnmuteViaIdentity1", "UnmuteViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgUnmuteCommunicationCall", "Uri": "/communications/calls/{call-id}/unmute", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Invoke-MgUnmuteCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", "Variants": [ "Unmute", "UnmuteExpanded", "UnmuteViaIdentity", "UnmuteViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", + "Module": "CloudCommunications" }, { - "Command": "Invoke-MgUnshareDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/unshareForSchoolDataSyncService", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUnshareDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unshare", "UnshareViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -110348,18 +110204,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Unsubmit1", "UnsubmitViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -110374,263 +110230,235 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Invoke-MgUnsubmitEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgUnsubmitEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" - ] - }, - { - "Command": "Invoke-MgUnsubmitEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Unsubmit1", - "UnsubmitViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgUnsubmitEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Invoke-MgUnsubmitEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" - ] - }, - { - "Command": "Invoke-MgUnsubmitEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Unsubmit1", - "UnsubmitViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Invoke-MgUnsubscribeGroup", "Uri": "/groups/{group-id}/unsubscribeByMail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgUnsubscribeGroup", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgUnsubscribeGroup", "Uri": "/groups/{group-id}/unsubscribeByMail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Invoke-MgUnsubscribeGroup", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unsubscribe1", "UnsubscribeViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Invoke-MgUnsubscribeUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/unsubscribe", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnsubscribeUserMailFolderMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUnsubscribeUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/unsubscribe", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Invoke-MgUnsubscribeUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Invoke-MgUploadDeviceManagementDepOnboardingSettingDepToken", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/uploadDepToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUploadDeviceManagementDepOnboardingSettingDepToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUploadDeviceManagementGroupPolicyUploadedDefinitionFileNewVersion", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/uploadNewVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Invoke-MgUploadDeviceManagementGroupPolicyUploadedDefinitionFileNewVersion", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Invoke-MgUploadEducationSynchronizationProfileUrl", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/uploadUrl", + "ApiVersion": "beta", "Method": "GET", - "Module": "Education", + "Command": "Invoke-MgUploadEducationSynchronizationProfileUrl", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Upload", "UploadViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Invoke-MgUploadTrustFrameworkKeySetCertificate", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadCertificate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgUploadTrustFrameworkKeySetCertificate", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKey", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgUploadTrustFrameworkKeySetPkcs12", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadPkcs12", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgUploadTrustFrameworkKeySetPkcs12", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKey", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgUploadTrustFrameworkKeySetSecret", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadSecret", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Invoke-MgUploadTrustFrameworkKeySetSecret", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKey", + "Module": "Identity.SignIns" }, { - "Command": "Invoke-MgUserReportAuthenticationMethodRegistered", "Uri": "/reports/authenticationMethods/usersRegisteredByFeature", + "ApiVersion": "beta", "Method": "GET", - "Module": "Reports", + "Command": "Invoke-MgUserReportAuthenticationMethodRegistered", "Permissions": { "Name": "AuditLog.Read.All", "Description": "Read audit log data", "FullDescription": "Allows the app to read and query your audit log activities, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary", "Variants": [ "Users", "Users1", @@ -110638,211 +110466,213 @@ "Users3", "UsersViaIdentity", "UsersViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary", + "Module": "Reports" }, { - "Command": "Invoke-MgViewUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeVisible", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/visibleView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRangeVisible", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRangeView", "Variants": [ "View", "ViewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRangeView", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgViewUserInsightSharedResourceMicrosoftGraphWorkbookRangeVisible", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/visibleView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserInsightSharedResourceMicrosoftGraphWorkbookRangeVisible", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRangeView", "Variants": [ "View", "ViewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRangeView", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgViewUserInsightTrendingResourceMicrosoftGraphWorkbookRangeVisible", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/visibleView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserInsightTrendingResourceMicrosoftGraphWorkbookRangeVisible", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRangeView", "Variants": [ "View", "ViewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRangeView", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgViewUserInsightUsedResourceMicrosoftGraphWorkbookRangeVisible", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/visibleView", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserInsightUsedResourceMicrosoftGraphWorkbookRangeVisible", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkbookRangeView", "Variants": [ "View", "ViewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphWorkbookRangeView", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgViewUserReminder", "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphReminder1", "Variants": [ "View1", "ViewViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphReminder1", + "Module": "Users.Functions" }, { - "Command": "Invoke-MgViewUserReminder", "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Users.Functions", + "Command": "Invoke-MgViewUserReminder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphReminder", "Variants": [ "View", "ViewViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphReminder", + "Module": "Users.Functions" }, { - "Command": "Join-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Join-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Join-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Join-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Join-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Join-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Join-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Join-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Join-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Join-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -110857,20 +110687,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -110885,610 +110715,610 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Associate1", "AssociateExpanded1", "AssociateViaIdentity1", "AssociateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ - "Associate1", - "AssociateExpanded1", - "AssociateViaIdentity1", - "AssociateViaIdentityExpanded1" - ] + "Associate", + "AssociateExpanded", + "AssociateViaIdentity", + "AssociateViaIdentityExpanded" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Join-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/associateWithHubSites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Join-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Associate", - "AssociateExpanded", - "AssociateViaIdentity", - "AssociateViaIdentityExpanded" - ] + "Associate1", + "AssociateExpanded1", + "AssociateViaIdentity1", + "AssociateViaIdentityExpanded1" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Lock-MgDeviceManagementComanagedDeviceRemote", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementComanagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceRemote", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceRemote", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceRemote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgDeviceManagementManagedDeviceRemote", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgDeviceManagementManagedDeviceRemote", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Lock1", "LockViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgDeviceManagementScriptDeviceRunStateManagedDeviceRemote", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Lock-MgDeviceManagementScriptDeviceRunStateManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Lock-MgUserManagedDeviceRemote", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Lock-MgUserManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Lock1", "LockViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Lock-MgUserManagedDeviceRemote", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Lock-MgUserManagedDeviceRemote", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Lock", "LockViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Merge-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/merge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Merge-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Merge", "MergeExpanded", "MergeViaIdentity", "MergeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Merge-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/merge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Merge-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Merge", "MergeExpanded", "MergeViaIdentity", "MergeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Merge-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/merge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Merge-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Merge", "MergeExpanded", "MergeViaIdentity", "MergeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Merge-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/merge", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Merge-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Merge", "MergeExpanded", "MergeViaIdentity", "MergeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Move-MgCommunicationCall", "Uri": "/communications/calls/{call-id}/transfer", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Move-MgCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Transfer1", "TransferExpanded1", "TransferViaIdentity1", "TransferViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Move-MgCommunicationCall", "Uri": "/communications/calls/{call-id}/transfer", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Move-MgCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Transfer", "TransferExpanded", "TransferViaIdentity", "TransferViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Move-MgDeviceManagementComanagedDeviceToOu", "Uri": "/deviceManagement/comanagedDevices/moveDevicesToOU", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Move-MgDeviceManagementComanagedDeviceToOu", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Move", "MoveExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Move-MgDeviceManagementDetectedAppManagedDeviceToOu", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/moveDevicesToOU", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Move-MgDeviceManagementDetectedAppManagedDeviceToOu", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Move-MgDeviceManagementIntentToTemplate", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/migrateToTemplate", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Move-MgDeviceManagementIntentToTemplate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Migrate", "MigrateExpanded", "MigrateViaIdentity", "MigrateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Move-MgDeviceManagementManagedDeviceToOu", "Uri": "/deviceManagement/managedDevices/moveDevicesToOU", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Move-MgDeviceManagementManagedDeviceToOu", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Move", "MoveExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Move-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Move1", "MoveExpanded1", "MoveViaIdentity1", "MoveViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Move1", "MoveExpanded1", "MoveViaIdentity1", "MoveViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Move1", "MoveExpanded1", "MoveViaIdentity1", "MoveViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserManagedDeviceToOu", "Uri": "/users/{user-id}/managedDevices/moveDevicesToOU", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserManagedDeviceToOu", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Move1", "MoveExpanded1", "MoveViaIdentity1", "MoveViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/move", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserTaskAlltask", "Uri": "/users/{user-id}/tasks/alltasks/{baseTask-id}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserTaskAlltask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserTaskAlltaskParentListTask", "Uri": "/users/{user-id}/tasks/alltasks/{baseTask-id}/parentList/tasks/{baseTask-id1}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserTaskAlltaskParentListTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Actions" }, { - "Command": "Move-MgUserTaskListTask", "Uri": "/users/{user-id}/tasks/lists/{baseTaskList-id}/tasks/{baseTask-id}/move", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Move-MgUserTaskListTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseTask", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBaseTask", + "Module": "Users.Actions" }, { - "Command": "New-MgAccessReview", "Uri": "/accessReviews", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAccessReview", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -111503,63 +111333,63 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "New-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/decisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "New-MgAccessReviewInstance", "Uri": "/accessReviews/{accessReview-id}/instances", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReview", + "Module": "Identity.Governance" }, { - "Command": "New-MgAccessReviewMyDecision", "Uri": "/accessReviews/{accessReview-id}/myDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAccessReviewMyDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewDecision", + "Module": "Identity.Governance" }, { - "Command": "New-MgAccessReviewReviewer", "Uri": "/accessReviews/{accessReview-id}/reviewers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAccessReviewReviewer", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -111574,20 +111404,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "New-MgAdministrativeUnit", "Uri": "/administrativeUnits", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -111602,33 +111432,33 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgAdministrativeUnitExtension", "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgAdministrativeUnitMemberByRef", "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgAdministrativeUnitMemberByRef", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -111643,20 +111473,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1Sr0J34AdministrativeunitsAdministrativeunitIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Sr0J34AdministrativeunitsAdministrativeunitIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgAdministrativeUnitScopedRoleMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -111671,196 +111501,196 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgAgreement", "Uri": "/agreements", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreement", "Uri": "/agreements", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreement", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementAcceptance", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFile", "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFile", "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileLocalization", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "New-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgreementFileVersion", + "Module": "Identity.Governance" }, { - "Command": "New-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -111881,18 +111711,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp", + "Module": "Teams" }, { - "Command": "New-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -111913,18 +111743,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsApp1", + "Module": "Teams" }, { - "Command": "New-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgAppCatalogTeamAppDefinition", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -111945,20 +111775,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition", + "Module": "Teams" }, { - "Command": "New-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgAppCatalogTeamAppDefinition", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -111979,20 +111809,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppDefinition1", + "Module": "Teams" }, { - "Command": "New-MgApplication", "Uri": "/applications", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112007,18 +111837,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApplication", + "Module": "Applications" }, { - "Command": "New-MgApplication", "Uri": "/applications", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112033,38 +111863,38 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphApplication1", + "Module": "Applications" }, { - "Command": "New-MgApplicationAppManagementPolicyByRef", "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationAppManagementPolicyByRef", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPathsRv5TehApplicationsApplicationIdAppmanagementpoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsRv5TehApplicationsApplicationIdAppmanagementpoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112079,20 +111909,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "New-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112107,65 +111937,65 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphExtensionProperty", + "Module": "Applications" }, { - "Command": "New-MgApplicationFederatedIdentityCredential", "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "New-MgApplicationHomeRealmDiscoveryPolicyByRef", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationHomeRealmDiscoveryPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsZvo03ZApplicationsApplicationIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsZvo03ZApplicationsApplicationIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationHomeRealmDiscoveryPolicyByRef", "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationHomeRealmDiscoveryPolicyByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsZvo03ZApplicationsApplicationIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsZvo03ZApplicationsApplicationIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationOwnerByRef", "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112186,20 +112016,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1WycvbaApplicationsApplicationIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1WycvbaApplicationsApplicationIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationOwnerByRef", "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112220,121 +112050,121 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1WycvbaApplicationsApplicationIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1WycvbaApplicationsApplicationIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "New-MgApplicationSynchronizationJobOnDemand", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationSynchronizationJobOnDemand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", "Variants": [ "Provision", "ProvisionExpanded", "ProvisionViaIdentity", "ProvisionViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphStringKeyStringValuePair", + "Module": "Applications" }, { - "Command": "New-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "New-MgApplicationSynchronizationTemplate", "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationSynchronizationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "New-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "New-MgApplicationTemplate", "Uri": "/applicationTemplates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "New-MgApplicationTemplate", "Uri": "/applicationTemplates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationTemplate", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphApplicationTemplate", + "Module": "Applications" }, { - "Command": "New-MgApplicationTokenIssuancePolicyByRef", "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTokenIssuancePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112355,20 +112185,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsVytsyqApplicationsApplicationIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsVytsyqApplicationsApplicationIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationTokenIssuancePolicyByRef", "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTokenIssuancePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112389,20 +112219,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPathsVytsyqApplicationsApplicationIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsVytsyqApplicationsApplicationIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationTokenLifetimePolicyByRef", "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112423,20 +112253,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsDs42X1ApplicationsApplicationIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsDs42X1ApplicationsApplicationIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgApplicationTokenLifetimePolicyByRef", "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgApplicationTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -112457,38 +112287,38 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPathsDs42X1ApplicationsApplicationIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsDs42X1ApplicationsApplicationIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgBookingBusiness", "Uri": "/bookingBusinesses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusiness", "Permissions": { "Name": "Bookings.Manage.All", "Description": "Manage bookings information", "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingBusiness", + "Module": "Bookings" }, { - "Command": "New-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -112509,35 +112339,35 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "New-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusinessCalendarView", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingAppointment", + "Module": "Bookings" }, { - "Command": "New-MgBookingBusinessCustomer", "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusinessCustomer", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -112558,20 +112388,35 @@ "IsAdmin": false } ], - "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], "OutputType": "IMicrosoftGraphBookingCustomer", + "Module": "Bookings" + }, + { + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "beta", + "Method": "POST", + "Command": "New-MgBookingBusinessCustomQuestion", + "Permissions": [], "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingCustomQuestion", + "Module": "Bookings" }, { - "Command": "New-MgBookingBusinessService", "Uri": "/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusinessService", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -112586,20 +112431,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingService", + "Module": "Bookings" }, { - "Command": "New-MgBookingBusinessStaffMember", "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingBusinessStaffMember", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -112614,46 +112459,46 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingStaffMember", + "Module": "Bookings" }, { - "Command": "New-MgBookingCurrency", "Uri": "/bookingCurrencies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "New-MgBookingCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBookingCurrency", + "Module": "Bookings" }, { - "Command": "New-MgBusinessFlowTemplate", "Uri": "/businessFlowTemplates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgBusinessFlowTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate", + "Module": "Identity.Governance" }, { - "Command": "New-MgChat", "Uri": "/chats", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChat", "Permissions": [ { "Name": "Chat.Create", @@ -112668,18 +112513,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "New-MgChat", "Uri": "/chats", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChat", "Permissions": [ { "Name": "Chat.Create", @@ -112694,18 +112539,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "New-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForChat", @@ -112720,20 +112565,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "New-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForChat", @@ -112748,20 +112593,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "New-MgChatMember", "Uri": "/chats/{chat-id}/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMember", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -112776,20 +112621,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgChatMember", "Uri": "/chats/{chat-id}/members", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMember", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -112804,20 +112649,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgChatMessage", "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessage", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -112838,20 +112683,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgChatMessage", "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessage", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -112872,110 +112717,110 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessageHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgChatMessageHostedContent", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessageHostedContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgChatOperation", "Uri": "/chats/{chat-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "New-MgChatPermissionGrant", "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "New-MgChatTab", "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Create", @@ -112996,20 +112841,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "New-MgChatTab", "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgChatTab", "Permissions": [ { "Name": "TeamsTab.Create", @@ -113030,282 +112875,312 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "New-MgCommunicationCall", "Uri": "/communications/calls", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCall1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCall1", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCall", "Uri": "/communications/calls", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCall", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCall", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup1", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAudioRoutingGroup", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCommsOperation", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphParticipant1", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphParticipant", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCallRecordsSession", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/createOrGet", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Create3", "CreateExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/createOrGet", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeetingAttendanceReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Create1", + "CreateExpanded1", + "CreateViaIdentity1", + "CreateViaIdentityExpanded1" + ], "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "New-MgCommunicationOnlineMeetingAttendanceReport", + "Permissions": [], "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Create1", + "Create2", + "CreateExpanded1", + "CreateExpanded2", + "CreateViaIdentity1", + "CreateViaIdentity2", + "CreateViaIdentityExpanded1", + "CreateViaIdentityExpanded2" + ], "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", + "Method": "POST", + "Command": "New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Create", - "Create1", "CreateExpanded", - "CreateExpanded1", "CreateViaIdentity", - "CreateViaIdentity1", - "CreateViaIdentityExpanded", - "CreateViaIdentityExpanded1" - ] + "CreateViaIdentityExpanded" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationOnlineMeetingRegistrationRegistrant", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationPresence", "Uri": "/communications/presences", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPresence1", + "Module": "CloudCommunications" }, { - "Command": "New-MgCommunicationPresence", "Uri": "/communications/presences", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPresence", + "Module": "CloudCommunications" }, { - "Command": "New-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113320,18 +113195,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCase", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113346,20 +113221,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCustodian", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseCustodianSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseCustodianSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113374,35 +113249,35 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseCustodianUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseCustodianUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113417,20 +113292,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseLegalHold", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseLegalHold", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113445,20 +113320,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113473,35 +113348,35 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113516,20 +113391,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113544,35 +113419,35 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113587,20 +113462,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseReviewSetQuery", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseReviewSetQuery", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113615,20 +113490,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseSourceCollection", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseSourceCollection", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113643,20 +113518,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113671,20 +113546,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113699,40 +113574,40 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsSgsureComplianceEdiscoveryCasesCaseIdSourcecollectionsSourcecollectionIdCustodiansourcesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsSgsureComplianceEdiscoveryCasesCaseIdSourcecollectionsSourcecollectionIdCustodiansourcesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef", "Permissions": { "Name": "eDiscovery.ReadWrite.All", "Description": "Read and write all eDiscovery objects", "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths159I4QvComplianceEdiscoveryCasesCaseIdSourcecollectionsSourcecollectionIdNoncustodialsourcesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths159I4QvComplianceEdiscoveryCasesCaseIdSourcecollectionsSourcecollectionIdNoncustodialsourcesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -113747,2530 +113622,2530 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEdiscoveryTag", + "Module": "Compliance" }, { - "Command": "New-MgComplianceEdiscoveryCaseTagChildTagByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "New-MgComplianceEdiscoveryCaseTagChildTagByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsT7CylhComplianceEdiscoveryCasesCaseIdTagsTagIdChildtagsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsT7CylhComplianceEdiscoveryCasesCaseIdTagsTagIdChildtagsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Compliance" }, { - "Command": "New-MgContact", "Uri": "/contacts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContact", "Uri": "/contacts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContact", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOrgContact", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactDirectReportByRef", "Uri": "/contacts/{orgContact-id}/directReports/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactDirectReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsR1Ojz8ContactsOrgcontactIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsR1Ojz8ContactsOrgcontactIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactDirectReportByRef", "Uri": "/contacts/{orgContact-id}/directReports/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactDirectReportByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsR1Ojz8ContactsOrgcontactIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsR1Ojz8ContactsOrgcontactIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactMemberOfByRef", "Uri": "/contacts/{orgContact-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Uaej6AContactsOrgcontactIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Uaej6AContactsOrgcontactIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactMemberOfByRef", "Uri": "/contacts/{orgContact-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Uaej6AContactsOrgcontactIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Uaej6AContactsOrgcontactIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactTransitiveMemberOfByRef", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths7T79UmContactsOrgcontactIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths7T79UmContactsOrgcontactIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactTransitiveMemberOfByRef", "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths7T79UmContactsOrgcontactIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths7T79UmContactsOrgcontactIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContactTransitiveReportByRef", "Uri": "/contacts/{orgContact-id}/transitiveReports/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContactTransitiveReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths2Di01NContactsOrgcontactIdTransitivereportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths2Di01NContactsOrgcontactIdTransitivereportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContract", "Uri": "/contracts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContract", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgContract", "Uri": "/contracts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgContract", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContract", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDataPolicyOperation", "Uri": "/dataPolicyOperations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgDataPolicyOperation", "Uri": "/dataPolicyOperations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDataPolicyOperation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgDevice", "Uri": "/devices", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDevice", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDevice1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDevice", "Uri": "/devices", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDevice", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIosManagedAppProtection1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppOperation", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedAppStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBook1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookCategory", "Uri": "/deviceAppManagement/managedEBookCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedEBookCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookCategoryByRef", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/categories/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookCategoryByRef", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPathsDckehrDeviceappmanagementManagedebooksManagedebookIdCategoriesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsDckehrDeviceappmanagementManagedebooksManagedebookIdCategoriesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUserInstallStateSummary", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceInstallState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMobileApp1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppCategory", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppCategoryByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppCategoryByRef", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths1Ipnvb3DeviceappmanagementMobileappsMobileappIdCategoriesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Ipnvb3DeviceappmanagementMobileappsMobileappIdCategoriesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppCategoryByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppCategoryByRef", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPaths1Ipnvb3DeviceappmanagementMobileappsMobileappIdCategoriesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Ipnvb3DeviceappmanagementMobileappsMobileappIdCategoriesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppRelationship", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppRelationship", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppUserStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAppInstallStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppInstallStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppInstallStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtPolicySet", "Uri": "/deviceAppManagement/policySets", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtPolicySet", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPolicySet", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtPolicySetAssignment", "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtPolicySetAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtPolicySetItem", "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtPolicySetItem", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPolicySetItem", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtSideLoadingKey", "Uri": "/deviceAppManagement/sideLoadingKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtSideLoadingKey", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSideLoadingKey", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSideLoadingKey", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedMobileApp", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtTask", "Uri": "/deviceAppManagement/deviceAppManagementTasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtTask", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAppManagementTask", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphVppToken", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphVppToken1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgDeviceCommand", "Uri": "/devices/{device-id}/commands", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceCommand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCommand", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementAndroid", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAndroid", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/createToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementAndroidForWorkEnrollmentProfileToken", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/createToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementAndroidForWorkEnrollmentProfileToken", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingGooglePlayWebToken", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/createGooglePlayWebToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingGooglePlayWebToken", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Uri": "/deviceManagement/applePushNotificationCertificate/generateApplePushNotificationCertificateSigningRequest", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Generate" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementAssignmentFilter", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementAuditEvent", "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementAuditEvent", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAuditEvent", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementAutopilotEvent", "Uri": "/deviceManagement/autopilotEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAutopilotEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementCartToClassAssociation", "Uri": "/deviceManagement/cartToClassAssociations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementCartToClassAssociation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCartToClassAssociation", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementCategory", "Uri": "/deviceManagement/categories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementCategorySettingDefinition", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementCategorySettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceDetectedAppByRef", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1GlfbgrDevicemanagementComanageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1GlfbgrDevicemanagementComanageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceLogCollectionRequestDownloadUrl", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementComanagedDeviceLogCollectionRequestDownloadUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceUserByRef", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsKvpyntDevicemanagementComanageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsKvpyntDevicemanagementComanageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementComanagementEligibleDevice", "Uri": "/deviceManagement/comanagementEligibleDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementComanagementEligibleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphComanagementEligibleDevice", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphComplianceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementCondition", "Uri": "/deviceManagement/managementConditions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementCondition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementCondition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagementCondition", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementConditionManagementConditionStatementByRef", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementConditionManagementConditionStatementByRef", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths2RkbwpDevicemanagementManagementconditionsManagementconditionIdManagementconditionstatementsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths2RkbwpDevicemanagementManagementconditionsManagementconditionIdManagementconditionstatementsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementConditionStatement", "Uri": "/deviceManagement/managementConditionStatements", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementConditionStatement", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagementConditionStatement", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagementConditionStatement", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementConditionStatementManagementConditionByRef", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementConditionStatementManagementConditionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsZrumq9DevicemanagementManagementconditionstatementsManagementconditionstatementIdManagementconditionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsZrumq9DevicemanagementManagementconditionstatementsManagementconditionstatementIdManagementconditionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementConfigurationPolicyCopy", "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/createCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementConfigurationPolicyCopy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementDataSharingConsent", "Uri": "/deviceManagement/dataSharingConsents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDataSharingConsent", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDataSharingConsent", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDepOnboardingSetting", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDepOnboardingSettingEncryptionPublicKey", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/generateEncryptionPublicKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementDepOnboardingSettingEncryptionPublicKey", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -116285,71 +116160,71 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Generate", "GenerateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDerivedCredentials", "Uri": "/deviceManagement/derivedCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDerivedCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -116370,18 +116245,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -116402,18 +116277,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDetectedApp", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDetectedAppManagedDeviceByRef", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDetectedAppManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -116434,20 +116309,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1C58NneDevicemanagementDetectedappsDetectedappIdManageddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1C58NneDevicemanagementDetectedappsDetectedappIdManageddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDetectedAppManagedDeviceByRef", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDetectedAppManagedDeviceByRef", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -116468,754 +116343,754 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1C58NneDevicemanagementDetectedappsDetectedappIdManageddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1C58NneDevicemanagementDetectedappsDetectedappIdManageddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCategory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfiguration", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationConflictSummary", "Uri": "/deviceManagement/deviceConfigurationConflictSummary", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationConflictSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationGroupAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRestrictedAppsViolation", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -117230,18 +117105,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScript", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceHealthScriptAssignment", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceHealthScriptAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -117256,20 +117131,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -117284,928 +117159,928 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceShellScript", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/createDeviceLogCollectionRequest", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptGroupAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptUserRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementDomainJoinConnector", "Uri": "/deviceManagement/domainJoinConnectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementDomainJoinConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementExchangeOnPremisPolicy", "Uri": "/deviceManagement/exchangeOnPremisesPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementExchangeOnPremisPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyCategory", "Uri": "/deviceManagement/groupPolicyCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyCategory", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyCategoryChildByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyCategoryChildByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsMxrsl6DevicemanagementGrouppolicycategoriesGrouppolicycategoryIdChildrenRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsMxrsl6DevicemanagementGrouppolicycategoriesGrouppolicycategoryIdChildrenRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyCategoryDefinitionByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyCategoryDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Kqgx3ODevicemanagementGrouppolicycategoriesGrouppolicycategoryIdDefinitionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Kqgx3ODevicemanagementGrouppolicycategoriesGrouppolicycategoryIdDefinitionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementGroupPolicyConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementGroupPolicyConfigurationAssignment", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementGroupPolicyConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementGroupPolicyDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyDefinitionFile", "Uri": "/deviceManagement/groupPolicyDefinitionFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyDefinitionFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyDefinitionFileDefinitionByRef", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyDefinitionFileDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1W2Bmj1DevicemanagementGrouppolicydefinitionfilesGrouppolicydefinitionfileIdDefinitionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1W2Bmj1DevicemanagementGrouppolicydefinitionfilesGrouppolicydefinitionfileIdDefinitionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyDefinitionPresentation", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyDefinitionPresentation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyMigrationReport", "Uri": "/deviceManagement/groupPolicyMigrationReports/createMigrationReport", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementGroupPolicyMigrationReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyObjectFile", "Uri": "/deviceManagement/groupPolicyObjectFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyObjectFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementImportedDeviceIdentity", "Uri": "/deviceManagement/importedDeviceIdentities", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementImportedDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntent", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentAssignment", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentCategory", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentCategorySetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentCategorySetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentCopy", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/createCopy", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementIntentCopy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementIntentDeviceSettingStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentDeviceState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntentUserState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementIntentUserState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementIntuneBrandingProfile", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfile", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementIntuneBrandingProfileAssignment", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementIntuneBrandingProfileAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118226,18 +118101,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118258,270 +118133,270 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceDetectedAppByRef", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths583MmxDevicemanagementManageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths583MmxDevicemanagementManageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceEncryptionState", "Uri": "/deviceManagement/managedDeviceEncryptionStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceEncryptionState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequest", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceUserByRef", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths604QwqDevicemanagementManageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths604QwqDevicemanagementManageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118536,18 +118411,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118562,18 +118437,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118588,18 +118463,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponseDownloadUrl", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponseDownloadUrl", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -118620,18 +118495,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelSite", "Uri": "/deviceManagement/microsoftTunnelSites", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMicrosoftTunnelSite", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118646,18 +118521,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118672,20 +118547,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerLogCollectionRequest", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/createServerLogCollectionRequest", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerLogCollectionRequest", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -118700,53 +118575,53 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEvent", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -118761,2138 +118636,2138 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementNdeConnector", "Uri": "/deviceManagement/ndesConnectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementNdeConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNdesConnector", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRemoteActionAudit", "Uri": "/deviceManagement/remoteActionAudits", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementRemoteActionAudit", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRemoteActionAudit", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphRemoteAssistancePartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementResourceAccessProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementResourceAccessProfileAssignment", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementResourceAccessProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphResourceOperation", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleAssignmentRoleScopeTagByRef", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleAssignmentRoleScopeTagByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths6SnjztDevicemanagementRoleassignmentsDeviceandappmanagementroleassignmentIdRolescopetagsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths6SnjztDevicemanagementRoleassignmentsDeviceandappmanagementroleassignmentIdRolescopetagsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphRoleDefinition", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphRoleAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleScopeTag", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTag", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementRoleScopeTagAssignment", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementRoleScopeTagAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScript", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementScriptAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementScriptDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementScriptGroupAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementScriptUserRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementScriptUserRunStateDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementSettingDefinition", "Uri": "/deviceManagement/settingDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementSettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTemplate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTemplateCategory", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTemplateCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTemplateCategoryRecommendedSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTemplateCategoryRecommendedSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTemplateInstance", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/createInstance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementTemplateInstance", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTemplateMigratableTo", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTemplateMigratableToInstance", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/createInstance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "New-MgDeviceManagementTemplateMigratableToInstance", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementIntent", + "Module": "DeviceManagement.Actions" }, { - "Command": "New-MgDeviceManagementTemplateSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTemplateSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditions1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment1", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTermAndConditionGroupAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementTermAndConditionGroupAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", "Variants": [ "Create2", "CreateExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", "Variants": [ "Create3", "CreateExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", "Variants": [ "Create4", "CreateExpanded4" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBaseline", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBaseline", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticCategory", "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticModelScore", "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticModelScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementUserPfxCertificate", "Uri": "/deviceManagement/userPfxCertificates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementUserPfxCertificate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserPfxCertificate", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointDeviceImage", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointGalleryImage", "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointGalleryImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointServicePlan", "Uri": "/deviceManagement/virtualEndpoint/servicePlans", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointServicePlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcServicePlan", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointSupportedRegion", "Uri": "/deviceManagement/virtualEndpoint/supportedRegions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointSupportedRegion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSetting", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Administration", + "Command": "New-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", + "Module": "DeviceManagement.Administration" }, { - "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementWindowMalwareInformation", "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowMalwareInformation", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsMalwareInformation", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement", + "Command": "New-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", + "Module": "DeviceManagement" }, { - "Command": "New-MgDeviceMemberOfByRef", "Uri": "/devices/{device-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths18Eypb1DevicesDeviceIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths18Eypb1DevicesDeviceIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceMemberOfByRef", "Uri": "/devices/{device-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths18Eypb1DevicesDeviceIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths18Eypb1DevicesDeviceIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceRegisteredOwnerByRef", "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceRegisteredOwnerByRef", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths11Iw6ThDevicesDeviceIdRegisteredownersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths11Iw6ThDevicesDeviceIdRegisteredownersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceRegisteredOwnerByRef", "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceRegisteredOwnerByRef", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPaths11Iw6ThDevicesDeviceIdRegisteredownersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths11Iw6ThDevicesDeviceIdRegisteredownersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceRegisteredUserByRef", "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceRegisteredUserByRef", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPathsU7UqmeDevicesDeviceIdRegisteredusersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsU7UqmeDevicesDeviceIdRegisteredusersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceRegisteredUserByRef", "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceRegisteredUserByRef", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPathsU7UqmeDevicesDeviceIdRegisteredusersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsU7UqmeDevicesDeviceIdRegisteredusersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceTransitiveMemberOfByRef", "Uri": "/devices/{device-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths5Tn8IPDevicesDeviceIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths5Tn8IPDevicesDeviceIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceTransitiveMemberOfByRef", "Uri": "/devices/{device-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths5Tn8IPDevicesDeviceIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths5Tn8IPDevicesDeviceIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDeviceUsageRights", "Uri": "/devices/{device-id}/usageRights", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDeviceUsageRights", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUsageRight", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -120907,18 +120782,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -120933,33 +120808,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAdministrativeUnit", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAdministrativeUnitExtension", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAdministrativeUnitMemberByRef", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAdministrativeUnitMemberByRef", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -120974,20 +120849,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Dkan8QDirectoryAdministrativeunitsAdministrativeunitIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Dkan8QDirectoryAdministrativeunitsAdministrativeunitIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAdministrativeUnitScopedRoleMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121002,115 +120877,115 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryAttributeSet", "Uri": "/directory/attributeSets", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryAttributeSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttributeSet", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryCustomSecurityAttributeDefinition", "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryCustomSecurityAttributeDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAllowedValue", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryFeatureRolloutPolicy", "Uri": "/directory/featureRolloutPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryFeatureRolloutPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryFeatureRolloutPolicyApplyTo", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryFederationConfiguration", "Uri": "/directory/federationConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryFederationConfiguration", "Permissions": [ { "Name": "Domain.Read.All", @@ -121125,126 +121000,126 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProviderBase", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryInboundSharedUserProfile", "Uri": "/directory/inboundSharedUserProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryInboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryObject", "Uri": "/directoryObjects", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "New-MgDirectoryObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "New-MgDirectoryObject", "Uri": "/directoryObjects", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "New-MgDirectoryObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "New-MgDirectoryOutboundSharedUserProfile", "Uri": "/directory/outboundSharedUserProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryOutboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryOutboundSharedUserProfileTenant", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryOutboundSharedUserProfileTenant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantReference", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTenantReference", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRecommendation", "Uri": "/directory/recommendations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendationResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRecommendationResource", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRole", "Uri": "/directoryRoles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121259,18 +121134,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRole", "Uri": "/directoryRoles", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRole", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121285,18 +121160,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRole", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleMemberByRef", "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121311,20 +121186,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsU3CoioDirectoryrolesDirectoryroleIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsU3CoioDirectoryrolesDirectoryroleIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleMemberByRef", "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121339,76 +121214,76 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPathsU3CoioDirectoryrolesDirectoryroleIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsU3CoioDirectoryrolesDirectoryroleIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectorySetting", "Uri": "/settings", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectorySetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -121423,642 +121298,642 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectorySettingTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySettingTemplate", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDirectorySharedEmailDomain", "Uri": "/directory/sharedEmailDomains", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDirectorySharedEmailDomain", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomain", "Uri": "/domains", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDomain1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomain", "Uri": "/domains", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDomain", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainDomainNameReferenceByRef", "Uri": "/domains/{domain-id}/domainNameReferences/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainDomainNameReferenceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths16TdfjnDomainsDomainIdDomainnamereferencesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths16TdfjnDomainsDomainIdDomainnamereferencesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainDomainNameReferenceByRef", "Uri": "/domains/{domain-id}/domainNameReferences/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainDomainNameReferenceByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths16TdfjnDomainsDomainIdDomainnamereferencesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths16TdfjnDomainsDomainIdDomainnamereferencesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainSharedEmailDomainInvitation", "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainSharedEmailDomainInvitation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDomainDnsRecord", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgDrive", "Uri": "/drives", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "New-MgDrive", "Uri": "/drives", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "New-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveBundle", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "New-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveBundle", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "New-MgDriveFollowing", "Uri": "/drives/{drive-id}/following", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveFollowing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "New-MgDriveFollowing", "Uri": "/drives/{drive-id}/following", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveFollowing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "New-MgDriveItem", "Uri": "/drives/{drive-id}/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "New-MgDriveItem", "Uri": "/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "New-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "New-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "New-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "New-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeBaseTypeByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1R2Spr5DrivesDriveIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1R2Spr5DrivesDriveIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeBaseTypeByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1R2Spr5DrivesDriveIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1R2Spr5DrivesDriveIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumnPositionByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsPce4E9DrivesDriveIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsPce4E9DrivesDriveIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgDriveListContentTypeColumnPositionByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsPce4E9DrivesDriveIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsPce4E9DrivesDriveIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "New-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "New-MgDriveListItemLink", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListItemLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Files" }, { - "Command": "New-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "New-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "New-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "New-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "New-MgDriveSpecial", "Uri": "/drives/{drive-id}/special", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveSpecial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "New-MgDriveSpecial", "Uri": "/drives/{drive-id}/special", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgDriveSpecial", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "New-MgEducationClass", "Uri": "/education/classes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClass", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass", + "Module": "Education" }, { - "Command": "New-MgEducationClass", "Uri": "/education/classes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClass", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationClass1", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122073,20 +121948,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122101,20 +121976,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment1", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentCategory", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122129,8 +122004,6 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Create", "Create3", @@ -122140,16 +122013,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Create1", "Create2", @@ -122159,13 +122032,15 @@ "CreateViaIdentity2", "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122180,20 +122055,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122208,80 +122083,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122296,20 +122171,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122324,372 +122199,269 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource", + "Module": "Education" }, { - "Command": "New-MgEducationClassMemberByRef", "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassMemberByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths16C28GsEducationClassesEducationclassIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths16C28GsEducationClassesEducationclassIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationClassMemberByRef", "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassMemberByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths16C28GsEducationClassesEducationclassIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths16C28GsEducationClassesEducationclassIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationClassSchoolByRef", "Uri": "/education/classes/{educationClass-id}/schools/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassSchoolByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1X6K5DdEducationClassesEducationclassIdSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1X6K5DdEducationClassesEducationclassIdSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationClassSchoolByRef", "Uri": "/education/classes/{educationClass-id}/schools/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassSchoolByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1X6K5DdEducationClassesEducationclassIdSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1X6K5DdEducationClassesEducationclassIdSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationClassTeacherByRef", "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassTeacherByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1PycihvEducationClassesEducationclassIdTeachersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1PycihvEducationClassesEducationclassIdTeachersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationClassTeacherByRef", "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationClassTeacherByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1PycihvEducationClassesEducationclassIdTeachersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1PycihvEducationClassesEducationclassIdTeachersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignment", "Uri": "/education/me/assignments", - "Method": "POST", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Create1", - "CreateExpanded1" - ] - }, - { - "Command": "New-MgEducationMeAssignment", - "Uri": "/education/me/assignments", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentCategory", "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Method": "POST", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] - }, - { - "Command": "New-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationCategory", + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentResource", "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationMeAssignmentResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentSubmissionOutcome", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationMeAssignmentSubmissionOutcome", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationOutcome", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentSubmissionResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationMeAssignmentSubmissionResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationMeAssignmentSubmissionSubmittedResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationMeAssignmentSubmissionSubmittedResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationMeClassByRef", "Uri": "/education/me/classes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeClassByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Tyb7V1EducationMeClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IPaths1Tyb7V1EducationMeClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeClassByRef", "Uri": "/education/me/classes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeClassByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Tyb7V1EducationMeClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IPaths1Tyb7V1EducationMeClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeRubric", "Uri": "/education/me/rubrics", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122704,18 +122476,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "New-MgEducationMeRubric", "Uri": "/education/me/rubrics", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -122730,1165 +122502,1058 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "New-MgEducationMeSchoolByRef", "Uri": "/education/me/schools/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeSchoolByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Mpgk2PEducationMeSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IPaths1Mpgk2PEducationMeSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeSchoolByRef", "Uri": "/education/me/schools/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeSchoolByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Mpgk2PEducationMeSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IPaths1Mpgk2PEducationMeSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeTaughtClassByRef", "Uri": "/education/me/taughtClasses/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeTaughtClassByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1970Ip3EducationMeTaughtclassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IPaths1970Ip3EducationMeTaughtclassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationMeTaughtClassByRef", "Uri": "/education/me/taughtClasses/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationMeTaughtClassByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1970Ip3EducationMeTaughtclassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IPaths1970Ip3EducationMeTaughtclassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationSchool", "Uri": "/education/schools", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchool", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool", + "Module": "Education" }, { - "Command": "New-MgEducationSchool", "Uri": "/education/schools", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchool", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSchool1", + "Module": "Education" }, { - "Command": "New-MgEducationSchoolClassByRef", "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchoolClassByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsD9VkjyEducationSchoolsEducationschoolIdClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsD9VkjyEducationSchoolsEducationschoolIdClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationSchoolClassByRef", "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchoolClassByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsD9VkjyEducationSchoolsEducationschoolIdClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsD9VkjyEducationSchoolsEducationschoolIdClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationSchoolUserByRef", "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchoolUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsLrhftyEducationSchoolsEducationschoolIdUsersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsLrhftyEducationSchoolsEducationschoolIdUsersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationSchoolUserByRef", "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSchoolUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsLrhftyEducationSchoolsEducationschoolIdUsersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsLrhftyEducationSchoolsEducationschoolIdUsersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", + "Module": "Education" }, { - "Command": "New-MgEducationSynchronizationProfileError", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationSynchronizationProfileError", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSynchronizationError", + "Module": "Education" }, { - "Command": "New-MgEducationUser", "Uri": "/education/users", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser", + "Module": "Education" }, { - "Command": "New-MgEducationUser", "Uri": "/education/users", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationUser1", + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentCategory", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignmentCategory", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationCategory", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Method": "POST", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] - }, - { - "Command": "New-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignmentResource", + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentSubmissionOutcome", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentSubmissionOutcome", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "OutputType": "IMicrosoftGraphEducationOutcome", + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentSubmissionResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationUserAssignmentSubmissionSubmittedResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] - }, - { - "Command": "New-MgEducationUserAssignmentSubmissionSubmittedResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "New-MgEducationUserClassByRef", "Uri": "/education/users/{educationUser-id}/classes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserClassByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths8MwkhyEducationUsersEducationuserIdClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths8MwkhyEducationUsersEducationuserIdClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationUserClassByRef", "Uri": "/education/users/{educationUser-id}/classes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserClassByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths8MwkhyEducationUsersEducationuserIdClassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths8MwkhyEducationUsersEducationuserIdClassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "New-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEducationRubric", + "Module": "Education" }, { - "Command": "New-MgEducationUserSchoolByRef", "Uri": "/education/users/{educationUser-id}/schools/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserSchoolByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsVossh3EducationUsersEducationuserIdSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsVossh3EducationUsersEducationuserIdSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationUserSchoolByRef", "Uri": "/education/users/{educationUser-id}/schools/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserSchoolByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsVossh3EducationUsersEducationuserIdSchoolsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsVossh3EducationUsersEducationuserIdSchoolsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationUserTaughtClassByRef", "Uri": "/education/users/{educationUser-id}/taughtClasses/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserTaughtClassByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1G1Vu62EducationUsersEducationuserIdTaughtclassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1G1Vu62EducationUsersEducationuserIdTaughtclassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEducationUserTaughtClassByRef", "Uri": "/education/users/{educationUser-id}/taughtClasses/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "New-MgEducationUserTaughtClassByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1G1Vu62EducationUsersEducationuserIdTaughtclassesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1G1Vu62EducationUsersEducationuserIdTaughtclassesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Education" }, { - "Command": "New-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackage1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageAccessPackageIncompatibleByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageAccessPackageIncompatibleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsLuc7MrIdentitygovernanceEntitlementmanagementAccesspackagesAccesspackageIdAccesspackagesincompatiblewithRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsLuc7MrIdentitygovernanceEntitlementmanagementAccesspackagesAccesspackageIdAccesspackagesincompatiblewithRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStage1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageAssignmentPolicy", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageAssignmentPolicy", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageCatalog", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths1Upmf1LIdentitygovernanceEntitlementmanagementAccesspackagesAccesspackageIdIncompatibleaccesspackagesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Upmf1LIdentitygovernanceEntitlementmanagementAccesspackagesAccesspackageIdIncompatibleaccesspackagesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageIncompatibleGroup", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageIncompatibleGroup", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsJ5Pxz2IdentitygovernanceEntitlementmanagementAccesspackageresourceenvironmentsAccesspackageresourceenvironmentIdAccesspackageresourcesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsJ5Pxz2IdentitygovernanceEntitlementmanagementAccesspackageresourceenvironmentsAccesspackageresourceenvironmentIdAccesspackageresourcesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageResourceRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageResourceRequest", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAccessPackageResourceRoleScope", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAccessPackageResourceRoleScope", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignment1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementCatalog", "Uri": "/identityGovernance/entitlementManagement/catalogs", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessPackageCatalog", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization1", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConnectedOrganization", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.Governance" }, { - "Command": "New-MgExternalConnection", "Uri": "/external/connections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Search", + "Command": "New-MgExternalConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection1", + "Module": "Search" }, { - "Command": "New-MgExternalConnection", "Uri": "/external/connections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Search", + "Command": "New-MgExternalConnection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", + "Module": "Search" }, { - "Command": "New-MgFinancialCompany", "Uri": "/financials/companies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompany", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCompany", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyAccount", "Uri": "/financials/companies/{company-id}/accounts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccount", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyAgedAccountPayable", "Uri": "/financials/companies/{company-id}/agedAccountsPayable", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyAgedAccountPayable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsPayable", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsPayable", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyAgedAccountReceivable", "Uri": "/financials/companies/{company-id}/agedAccountsReceivable", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyAgedAccountReceivable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsReceivable", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAgedAccountsReceivable", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCountryRegion", "Uri": "/financials/companies/{company-id}/countriesRegions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCountryRegion", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCountryRegion", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCurrency", "Uri": "/financials/companies/{company-id}/currencies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCurrency", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCurrency", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomer", "Uri": "/financials/companies/{company-id}/customers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomer", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCustomer", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPayments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPaymentJournal", "Uri": "/financials/companies/{company-id}/customerPaymentJournals", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPaymentJournal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCustomerPayment", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyCustomerPicture", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyDimension", "Uri": "/financials/companies/{company-id}/dimensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyDimension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimension", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDimension", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyDimensionValue", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyDimensionValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimensionValue", "Variants": [ "Create", "Create1", @@ -123898,151 +123563,151 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDimensionValue", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyEmployee", "Uri": "/financials/companies/{company-id}/employees", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyEmployee", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmployee", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyEmployeePicture", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyEmployeePicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyGeneralLedgerEntry", "Uri": "/financials/companies/{company-id}/generalLedgerEntries", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyGeneralLedgerEntry", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGeneralLedgerEntry", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGeneralLedgerEntry", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyInformation", "Uri": "/financials/companies/{company-id}/companyInformation", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyInformation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCompanyInformation1", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyItem", "Uri": "/financials/companies/{company-id}/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyItem", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItem", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyItemCategory", "Uri": "/financials/companies/{company-id}/itemCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyItemCategory", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemCategory", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyItemPicture", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyJournal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphJournal", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyJournalLine", "Uri": "/financials/companies/{company-id}/journalLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyJournalLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", "Variants": [ "Create", "Create1", @@ -124052,86 +123717,86 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphJournalLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPaymentMethod", "Uri": "/financials/companies/{company-id}/paymentMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPaymentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPaymentMethod", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPaymentTerm", "Uri": "/financials/companies/{company-id}/paymentTerms", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPaymentTerm", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPaymentTerm", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPicture", "Uri": "/financials/companies/{company-id}/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoice", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPurchaseInvoiceLine", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPurchaseInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", "Variants": [ "Create", "Create1", @@ -124141,16 +123806,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "Create1", @@ -124160,151 +123825,151 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemo", "Uri": "/financials/companies/{company-id}/salesCreditMemos", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemo", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemoCustomerPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemoCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoice", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleInvoiceCustomerPicture", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleInvoiceCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleInvoiceLine", "Uri": "/financials/companies/{company-id}/salesInvoiceLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", "Variants": [ "Create", "Create1", @@ -124314,16 +123979,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSalesInvoiceLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "Create1", @@ -124333,46 +123998,46 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleOrder", "Uri": "/financials/companies/{company-id}/salesOrders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleOrder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrder", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleOrderCustomerPicture", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleOrderCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleOrderLine", "Uri": "/financials/companies/{company-id}/salesOrderLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleOrderLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", "Variants": [ "Create", "Create1", @@ -124382,16 +124047,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSalesOrderLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleOrderLineItemPicture", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleOrderLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "Create1", @@ -124401,59 +124066,59 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuote", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleQuoteCustomerPicture", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleQuoteCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleQuoteInvoice", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/makeInvoice", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleQuoteInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Make", "MakeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleQuoteLine", "Uri": "/financials/companies/{company-id}/salesQuoteLines", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleQuoteLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", "Variants": [ "Create", "Create1", @@ -124463,16 +124128,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSalesQuoteLine", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanySaleQuoteLineItemPicture", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanySaleQuoteLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "Create1", @@ -124482,123 +124147,125 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyShipmentMethod", "Uri": "/financials/companies/{company-id}/shipmentMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyShipmentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphShipmentMethod", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyTaxArea", "Uri": "/financials/companies/{company-id}/taxAreas", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyTaxArea", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTaxArea", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyTaxGroup", "Uri": "/financials/companies/{company-id}/taxGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyTaxGroup", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTaxGroup", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyUnit", "Uri": "/financials/companies/{company-id}/unitsOfMeasure", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyUnit", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnitOfMeasure", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyVendor", "Uri": "/financials/companies/{company-id}/vendors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyVendor", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphVendor", + "Module": "Financials" }, { - "Command": "New-MgFinancialCompanyVendorPicture", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "New-MgFinancialCompanyVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPicture", + "Module": "Financials" }, { - "Command": "New-MgGroup", "Uri": "/groups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -124619,18 +124286,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "New-MgGroup", "Uri": "/groups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -124651,58 +124318,58 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Groups" }, { - "Command": "New-MgGroupAcceptedSenderByRef", "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupAcceptedSenderByRef", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths1Y8Bsn4GroupsGroupIdAcceptedsendersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Y8Bsn4GroupsGroupIdAcceptedsendersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupAcceptedSenderByRef", "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupAcceptedSenderByRef", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPaths1Y8Bsn4GroupsGroupIdAcceptedsendersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Y8Bsn4GroupsGroupIdAcceptedsendersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -124717,20 +124384,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "New-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -124745,711 +124412,711 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "New-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "New-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "New-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupConversation", "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversation", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversation", + "Module": "Groups" }, { - "Command": "New-MgGroupConversation", "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversation", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversation1", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostMention", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupDrive", "Uri": "/groups/{group-id}/drives", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgGroupDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "New-MgGroupDrive", "Uri": "/groups/{group-id}/drives", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgGroupDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "New-MgGroupEndpoint", "Uri": "/groups/{group-id}/endpoints", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Groups" }, { - "Command": "New-MgGroupEvent", "Uri": "/groups/{group-id}/events", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEvent", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgGroupEvent", "Uri": "/groups/{group-id}/events", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEvent", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventAttachment", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventAttachment", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventExceptionOccurrence", "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "New-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "New-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgGroupExtension", "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupExtension", "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { - "Command": "New-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberByRef", "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -125476,20 +125143,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths15I3FyhGroupsGroupIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths15I3FyhGroupsGroupIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberByRef", "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -125516,80 +125183,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths15I3FyhGroupsGroupIdMembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create3", "CreateExpanded3", "CreateViaIdentity3", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IPaths15I3FyhGroupsGroupIdMembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberOfByRef", "Uri": "/groups/{group-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsCa7EzdGroupsGroupIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create5", "CreateExpanded5", "CreateViaIdentity5", "CreateViaIdentityExpanded5" - ] + ], + "OutputType": "IPathsCa7EzdGroupsGroupIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberOfByRef", "Uri": "/groups/{group-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsCa7EzdGroupsGroupIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create2", "CreateExpanded2", "CreateViaIdentity2", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IPathsCa7EzdGroupsGroupIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberWithLicenseErrorByRef", "Uri": "/groups/{group-id}/membersWithLicenseErrors/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberWithLicenseErrorByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Jqo6K2GroupsGroupIdMemberswithlicenseerrorsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Jqo6K2GroupsGroupIdMemberswithlicenseerrorsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupMemberWithLicenseErrorByRef", "Uri": "/groups/{group-id}/membersWithLicenseErrors/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupMemberWithLicenseErrorByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Jqo6K2GroupsGroupIdMemberswithlicenseerrorsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create4", "CreateExpanded4", "CreateViaIdentity4", "CreateViaIdentityExpanded4" - ] + ], + "OutputType": "IPaths1Jqo6K2GroupsGroupIdMemberswithlicenseerrorsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -125610,20 +125277,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -125644,20 +125311,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteNotebookSection", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -125678,20 +125345,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteNotebookSection", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -125712,20 +125379,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteNotebookSectionGroup", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -125746,20 +125413,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteNotebookSectionGroup", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -125780,20 +125447,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -125814,20 +125481,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -125848,53 +125515,51 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create2", "Create3", @@ -125904,16 +125569,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create", "Create1", @@ -125923,13 +125588,15 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionGroupSection", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -125950,20 +125617,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionGroupSection", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -125984,20 +125651,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionPage", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -126018,20 +125685,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgGroupOnenoteSectionPage", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgGroupOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -126052,20 +125719,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgGroupOwnerByRef", "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupOwnerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -126086,20 +125753,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1Hc8E36GroupsGroupIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Hc8E36GroupsGroupIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupOwnerByRef", "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupOwnerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -126120,120 +125787,120 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Hc8E36GroupsGroupIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Hc8E36GroupsGroupIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "New-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Groups" }, { - "Command": "New-MgGroupPhoto", "Uri": "/groups/{group-id}/photos", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "New-MgGroupPhoto", "Uri": "/groups/{group-id}/photos", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Groups" }, { - "Command": "New-MgGroupRejectedSenderByRef", "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupRejectedSenderByRef", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPaths1Ot1VbgGroupsGroupIdRejectedsendersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Ot1VbgGroupsGroupIdRejectedsendersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupRejectedSenderByRef", "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupRejectedSenderByRef", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPaths1Ot1VbgGroupsGroupIdRejectedsendersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Ot1VbgGroupsGroupIdRejectedsendersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupSetting", "Uri": "/groups/{group-id}/settings", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupSetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -126248,363 +125915,363 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectorySetting", + "Module": "Groups" }, { - "Command": "New-MgGroupSite", "Uri": "/groups/{group-id}/sites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgGroupSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "New-MgGroupSite", "Uri": "/groups/{group-id}/sites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgGroupSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "New-MgGroupThread", "Uri": "/groups/{group-id}/threads", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread", + "Module": "Groups" }, { - "Command": "New-MgGroupThread", "Uri": "/groups/{group-id}/threads", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationThread1", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPost", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPost1", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostAttachmentUploadSession", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostAttachmentUploadSession", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostAttachmentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostMention", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Groups" }, { - "Command": "New-MgGroupTransitiveMemberByRef", "Uri": "/groups/{group-id}/transitiveMembers/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupTransitiveMemberByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths12OpfrnGroupsGroupIdTransitivemembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths12OpfrnGroupsGroupIdTransitivemembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupTransitiveMemberByRef", "Uri": "/groups/{group-id}/transitiveMembers/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupTransitiveMemberByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths12OpfrnGroupsGroupIdTransitivemembersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create3", "CreateExpanded3", "CreateViaIdentity3", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IPaths12OpfrnGroupsGroupIdTransitivemembersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupTransitiveMemberOfByRef", "Uri": "/groups/{group-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsCgkcf5GroupsGroupIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsCgkcf5GroupsGroupIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgGroupTransitiveMemberOfByRef", "Uri": "/groups/{group-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "New-MgGroupTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsCgkcf5GroupsGroupIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create2", "CreateExpanded2", "CreateViaIdentity2", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IPathsCgkcf5GroupsGroupIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Groups" }, { - "Command": "New-MgIdentityConditionalAccessAuthenticationContextClassReference", "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityConditionalAccessAuthenticationContextClassReference", "Permissions": { "Name": "Policy.ReadWrite.ConditionalAccess", "Description": "Read and write your organization's conditional access policies", "FullDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -126619,18 +126286,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -126645,18 +126312,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphNamedLocation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Application.Read.All", @@ -126677,18 +126344,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Application.Read.All", @@ -126709,248 +126376,248 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "New-MgIdentityGovernanceAccessReviewDecisionInsight", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgIdentityGovernanceAccessReviewDecisionInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceInsight", + "Module": "Identity.Governance" }, { - "Command": "New-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewReviewer", + "Module": "Identity.Governance" }, { - "Command": "New-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", + "Module": "Identity.Governance" }, { - "Command": "New-MgIdentityProvider", "Uri": "/identityProviders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityProvider", "Uri": "/identityProviders", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProvider", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphIdentityProvider", + "Module": "Identity.SignIns" }, { - "Command": "New-MgIdentityUserFlow", "Uri": "/identity/userFlows", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgIdentityUserFlow", "Permissions": { "Name": "IdentityUserFlow.ReadWrite.All", "Description": "Read and write all identity user flows", "FullDescription": "Allows the app to read or write your organization's user flows, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIdentityUserFlow", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionPolicyLabel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionLabel", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionThreatAssessmentRequest", "Permissions": { "Name": "ThreatAssessment.ReadWrite.All", "Description": "Read and write threat assessment requests", "FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphThreatAssessmentResult", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInvitation", "Uri": "/invitations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInvitation", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -126971,18 +126638,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInvitation", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphInvitation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgInvitation", "Uri": "/invitations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgInvitation", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -127003,18 +126670,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInvitation1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInvitation1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -127035,18 +126702,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", + "Module": "Identity.SignIns" }, { - "Command": "New-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -127067,87 +126734,85 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgOfficeClientConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfiguration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgOfficeClientConfigurationAssignment", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgOfficeClientConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgOnPremisePublishingProfile", "Uri": "/onPremisesPublishingProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Create", "Create1", @@ -127161,21 +126826,21 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileAgentGroupAgent", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Create", "Create1", @@ -127185,16 +126850,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Create", "Create1", @@ -127204,16 +126869,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Create", "Create1", @@ -127223,101 +126888,101 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileConnector", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileConnector", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConnector", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileConnectorGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileConnectorGroupApplicationByRef", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileConnectorGroupApplicationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1UwkpvwOnpremisespublishingprofilesOnpremisespublishingprofileIdConnectorgroupsConnectorgroupIdApplicationsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1UwkpvwOnpremisespublishingprofilesOnpremisespublishingprofileIdConnectorgroupsConnectorgroupIdApplicationsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfileConnectorMemberOf", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfileConnectorMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConnectorGroup", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfilePublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfilePublishedResource", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", "Variants": [ "Create", "Create1", @@ -127327,180 +126992,182 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnPremisesAgent", + "Module": "Applications" }, { - "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPublishedResource", + "Module": "Applications" }, { - "Command": "New-MgOrganization", "Uri": "/organization", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgOrganization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOrganization1", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgOrganization", "Uri": "/organization", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgOrganization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOrganization", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgOrganizationCertificateBasedAuthConfigurationByRef", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgOrganizationCertificateBasedAuthConfigurationByRef", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPathsWu1MmpOrganizationIdCertificatebasedauthconfigurationRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsWu1MmpOrganizationIdCertificatebasedauthconfigurationRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.SignIns" }, { - "Command": "New-MgOrganizationCertificateBasedAuthConfigurationByRef", "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgOrganizationCertificateBasedAuthConfigurationByRef", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPathsWu1MmpOrganizationIdCertificatebasedauthconfigurationRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsWu1MmpOrganizationIdCertificatebasedauthconfigurationRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.SignIns" }, { - "Command": "New-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgOrganizationSettingProfileCardProperty", "Uri": "/organization/{organization-id}/settings/profileCardProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgOrganizationSettingProfileCardProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProfileCardProperty", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgPlace", "Uri": "/places", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgPlace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlace1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPlace1", + "Module": "Calendar" }, { - "Command": "New-MgPlace", "Uri": "/places", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgPlace", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlace", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlace", + "Module": "Calendar" }, { - "Command": "New-MgPlannerBucket", "Uri": "/planner/buckets", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127515,18 +127182,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket1", + "Module": "Planner" }, { - "Command": "New-MgPlannerBucket", "Uri": "/planner/buckets", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127541,18 +127208,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlannerBucket", + "Module": "Planner" }, { - "Command": "New-MgPlannerPlan", "Uri": "/planner/plans", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127567,18 +127234,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan1", + "Module": "Planner" }, { - "Command": "New-MgPlannerPlan", "Uri": "/planner/plans", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127593,71 +127260,71 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlannerPlan", + "Module": "Planner" }, { - "Command": "New-MgPlannerRoster", "Uri": "/planner/rosters", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerRoster", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRoster", + "Module": "Planner" }, { - "Command": "New-MgPlannerRosterMember", "Uri": "/planner/rosters/{plannerRoster-id}/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerRosterMember", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlannerRosterMember", + "Module": "Planner" }, { - "Command": "New-MgPlannerRosterPlanByRef", "Uri": "/planner/rosters/{plannerRoster-id}/plans/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerRosterPlanByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsZnp7QnPlannerRostersPlannerrosterIdPlansRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsZnp7QnPlannerRostersPlannerrosterIdPlansRefPostResponses201ContentApplicationJsonSchema", + "Module": "Planner" }, { - "Command": "New-MgPlannerTask", "Uri": "/planner/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127672,18 +127339,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask1", + "Module": "Planner" }, { - "Command": "New-MgPlannerTask", "Uri": "/planner/tasks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Planner", + "Command": "New-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -127698,731 +127365,731 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPlannerTask", + "Module": "Planner" }, { - "Command": "New-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyAppManagementPolicy", "Uri": "/policies/appManagementPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyAppManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyAppManagementPolicyApplyToByRef", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyAppManagementPolicyApplyToByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Pj450WPoliciesAppmanagementpoliciesAppmanagementpolicyIdAppliestoRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Pj450WPoliciesAppmanagementpoliciesAppmanagementpolicyIdAppliestoRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyAuthorizationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAuthorizationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyMobileAppManagementPolicy", "Uri": "/policies/mobileAppManagementPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyMobileAppManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyMobileDeviceManagementPolicy", "Uri": "/policies/mobileDeviceManagementPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyMobileDeviceManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicyExclude", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicyExclude", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicyInclude", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyPermissionGrantPolicyInclude", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyRoleManagementPolicy", "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyRoleManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyRoleManagementPolicyAssignment", "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyRoleManagementPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyRoleManagementPolicyEffectiveRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyRoleManagementPolicyEffectiveRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyRoleManagementPolicyRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyRoleManagementPolicyRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyServicePrincipalCreationPolicy", "Uri": "/policies/servicePrincipalCreationPolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyServicePrincipalCreationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyServicePrincipalCreationPolicyExclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyServicePrincipalCreationPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyServicePrincipalCreationPolicyInclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyServicePrincipalCreationPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgPrintConnector", "Uri": "/print/connectors", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintConnector", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintConnector", "Uri": "/print/connectors", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintConnector", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintConnector", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintOperation", "Uri": "/print/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintOperation", "Uri": "/print/operations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintOperation", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterConnectorByRef", "Uri": "/print/printers/{printer-id}/connectors/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterConnectorByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Vqtzl6PrintPrintersPrinterIdConnectorsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Vqtzl6PrintPrintersPrinterIdConnectorsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterConnectorByRef", "Uri": "/print/printers/{printer-id}/connectors/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterConnectorByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Vqtzl6PrintPrintersPrinterIdConnectorsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Vqtzl6PrintPrintersPrinterIdConnectorsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterShare", "Uri": "/print/printerShares", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterShare", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterShareAllowedGroupByRef", "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterShareAllowedGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsE4Fi9ZPrintPrintersharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsE4Fi9ZPrintPrintersharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterShareAllowedUserByRef", "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterShareAllowedUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths15IruvoPrintPrintersharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths15IruvoPrintPrintersharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/shares/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterShareByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths12CppzkPrintPrintersPrinterIdSharesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths12CppzkPrintPrintersPrinterIdSharesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/shares/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterShareByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths12CppzkPrintPrintersPrinterIdSharesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths12CppzkPrintPrintersPrinterIdSharesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -128437,20 +128104,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -128465,441 +128132,441 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskTrigger", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintService", "Uri": "/print/services", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintService", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintService1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintService", "Uri": "/print/services", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintService", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintService", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShare", "Uri": "/print/shares", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShare", "Uri": "/print/shares", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrinterShare", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShareAllowedGroupByRef", "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShareAllowedGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1W3HsddPrintSharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1W3HsddPrintSharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShareAllowedGroupByRef", "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShareAllowedGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1W3HsddPrintSharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1W3HsddPrintSharesPrintershareIdAllowedgroupsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShareAllowedUserByRef", "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShareAllowedUserByRef", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IPathsDwbukqPrintSharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsDwbukqPrintSharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintShareAllowedUserByRef", "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintShareAllowedUserByRef", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IPathsDwbukqPrintSharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsDwbukqPrintSharesPrintershareIdAllowedusersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintTaskDefinition", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask1", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "New-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrintTask", + "Module": "Devices.CloudPrint" }, { - "Command": "New-MgPrivilegedAccess", "Uri": "/privilegedAccess", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccess", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedAccess", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedAccessResource", "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccessResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceResource", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedAccessRoleAssignment", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccessRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedAccessRoleAssignmentRequest", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccessRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedAccessRoleDefinition", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccessRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedAccessRoleSetting", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedAccessRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedApproval", "Uri": "/privilegedApproval", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedApproval", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedApproval", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedOperationEvent", "Uri": "/privilegedOperationEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedOperationEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRole", "Uri": "/privilegedRoles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRole", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRoleAssignment", "Uri": "/privilegedRoleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRoleAssignment", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRoleAssignmentByRef", "Uri": "/privilegedRoles/{privilegedRole-id}/assignments/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRoleAssignmentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths175AryxPrivilegedrolesPrivilegedroleIdAssignmentsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths175AryxPrivilegedrolesPrivilegedroleIdAssignmentsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRoleAssignmentEligible", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makeEligible", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRoleAssignmentEligible", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Make", "MakeViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRoleAssignmentPermanent", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makePermanent", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRoleAssignmentPermanent", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", "Variants": [ "Make", "MakeExpanded", "MakeViaIdentity", "MakeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", + "Module": "Identity.Governance" }, { - "Command": "New-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgPrivilegedRoleAssignmentRequest", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -128914,44 +128581,42 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "New-MgProgram", "Uri": "/programs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgProgram", "Permissions": { "Name": "ProgramControl.ReadWrite.All", "Description": "Manage programs that you can access", "FullDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProgram", + "Module": "Identity.Governance" }, { - "Command": "New-MgProgramControl", "Uri": "/programControls", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgProgramControl", "Permissions": { "Name": "ProgramControl.ReadWrite.All", "Description": "Manage programs that you can access", "FullDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", "Variants": [ "Create", "Create1", @@ -128959,95 +128624,110 @@ "CreateExpanded1", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProgramControl", + "Module": "Identity.Governance" }, { - "Command": "New-MgProgramControlType", "Uri": "/programControlTypes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgProgramControlType", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], "OutputType": "IMicrosoftGraphProgramControlType", + "Module": "Identity.Governance" + }, + { + "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "beta", + "Method": "POST", + "Command": "New-MgReportAuthenticationMethodUserRegistrationDetail", + "Permissions": [], "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserRegistrationDetails", + "Module": "Reports" }, { - "Command": "New-MgRiskDetection", "Uri": "/riskDetections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgRiskDetection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRiskDetection", + "Module": "Identity.SignIns" }, { - "Command": "New-MgRiskyUser", "Uri": "/riskyUsers", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgRiskyUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUser", + "Module": "Identity.SignIns" }, { - "Command": "New-MgRiskyUserHistory", "Uri": "/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgRiskyUserHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", + "Module": "Identity.SignIns" }, { - "Command": "New-MgRoleManagementCloudPcResourceNamespace", "Uri": "/roleManagement/cloudPC/resourceNamespaces", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleAssignment", "Uri": "/roleManagement/cloudPC/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleAssignment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -129062,119 +128742,119 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleAssignmentAppScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths64TceeRolemanagementCloudpcRoleassignmentsUnifiedroleassignmentmultipleIdDirectoryscopesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths64TceeRolemanagementCloudpcRoleassignmentsUnifiedroleassignmentmultipleIdDirectoryscopesRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsJ502MqRolemanagementCloudpcRoleassignmentsUnifiedroleassignmentmultipleIdPrincipalsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsJ502MqRolemanagementCloudpcRoleassignmentsUnifiedroleassignmentmultipleIdPrincipalsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleDefinition", "Uri": "/roleManagement/cloudPC/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementResourceNamespace", "Uri": "/roleManagement/deviceManagement/resourceNamespaces", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleAssignment", "Uri": "/roleManagement/deviceManagement/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleAssignment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -129189,63 +128869,63 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppScope", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsI90Xd7RolemanagementDevicemanagementRoleassignmentsUnifiedroleassignmentmultipleIdDirectoryscopesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsI90Xd7RolemanagementDevicemanagementRoleassignmentsUnifiedroleassignmentmultipleIdDirectoryscopesRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsVqpcrcRolemanagementDevicemanagementRoleassignmentsUnifiedroleassignmentmultipleIdPrincipalsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsVqpcrcRolemanagementDevicemanagementRoleassignmentsUnifiedroleassignmentmultipleIdPrincipalsRefPostResponses201ContentApplicationJsonSchema", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -129272,307 +128952,307 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryResourceNamespace", "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignment", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignment", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", "Description": "Read, update, and delete all active role assignments for your company's directory", "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", "Description": "Read, update, and delete all eligible role assignments for your company's directory", "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementResourceNamespace", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -129587,18 +129267,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -129613,180 +129293,180 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApproval", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphApprovalStep", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition1", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", + "Module": "DeviceManagement.Enrolment" }, { - "Command": "New-MgSchemaExtension", "Uri": "/schemaExtensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "SchemaExtensions", + "Command": "New-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -129801,18 +129481,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "New-MgSchemaExtension", "Uri": "/schemaExtensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "SchemaExtensions", + "Command": "New-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -129827,298 +129507,298 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSchemaExtension", + "Module": "SchemaExtensions" }, { - "Command": "New-MgSearchAcronym", "Uri": "/search/acronyms", + "ApiVersion": "beta", "Method": "POST", - "Module": "Search", + "Command": "New-MgSearchAcronym", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSearchAcronym", + "Module": "Search" }, { - "Command": "New-MgSearchBookmark", "Uri": "/search/bookmarks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Search", + "Command": "New-MgSearchBookmark", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSearchBookmark", + "Module": "Search" }, { - "Command": "New-MgSearchQna", "Uri": "/search/qnas", + "ApiVersion": "beta", "Method": "POST", - "Module": "Search", + "Command": "New-MgSearchQna", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSearchQna", + "Module": "Search" }, { - "Command": "New-MgSecurityAction", "Uri": "/security/securityActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityAction", + "Module": "Security" }, { - "Command": "New-MgSecurityAlert", "Uri": "/security/alerts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityAlert", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "New-MgSecurityAlert", "Uri": "/security/alerts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityAlert", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "New-MgSecurityAttackSimulation", "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityAttackSimulation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulation", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSimulation", + "Module": "Security" }, { - "Command": "New-MgSecurityCloudAppSecurityProfile", "Uri": "/security/cloudAppSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityCloudAppSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityDomainSecurityProfile", "Uri": "/security/domainSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityDomainSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDomainSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityFileSecurityProfile", "Uri": "/security/fileSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityFileSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFileSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityHostSecurityProfile", "Uri": "/security/hostSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityHostSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHostSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityIncident", "Uri": "/security/incidents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityIncident", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIncident", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIncident", + "Module": "Security" }, { - "Command": "New-MgSecurityIncidentAlertByRef", "Uri": "/security/incidents/{incident-id}/alerts/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityIncidentAlertByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Kkbdg2SecurityIncidentsIncidentIdAlertsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Kkbdg2SecurityIncidentsIncidentIdAlertsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Security" }, { - "Command": "New-MgSecurityIPSecurityProfile", "Uri": "/security/ipSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityIPSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphIPSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityProviderTenantSetting", "Uri": "/security/providerTenantSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityProviderTenantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProviderTenantSetting", + "Module": "Security" }, { - "Command": "New-MgSecuritySecureScore", "Uri": "/security/secureScores", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "New-MgSecuritySecureScore", "Uri": "/security/secureScores", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScore", + "Module": "Security" }, { - "Command": "New-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecuritySecureScoreControlProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "New-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecuritySecureScoreControlProfile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile", + "Module": "Security" }, { - "Command": "New-MgSecurityTiIndicator", "Uri": "/security/tiIndicators", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityTiIndicator", "Permissions": { "Name": "ThreatIndicators.ReadWrite.OwnedBy", "Description": "Manage threat indicators this app creates or owns", "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTiIndicator", + "Module": "Security" }, { - "Command": "New-MgSecurityUserSecurityProfile", "Uri": "/security/userSecurityProfiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "New-MgSecurityUserSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserSecurityProfile", + "Module": "Security" }, { - "Command": "New-MgServicePrincipal", "Uri": "/servicePrincipals", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130133,18 +129813,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal1", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipal", "Uri": "/servicePrincipals", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130159,33 +129839,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphServicePrincipal", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalAppManagementPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalAppManagementPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsBhru7IServiceprincipalsServiceprincipalIdAppmanagementpoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsBhru7IServiceprincipalsServiceprincipalIdAppmanagementpoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "Application.Read.All", @@ -130224,20 +129904,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "Application.Read.All", @@ -130276,20 +129956,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -130310,20 +129990,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -130344,20 +130024,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130378,20 +130058,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsVtc05SServiceprincipalsServiceprincipalIdClaimsmappingpoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsVtc05SServiceprincipalsServiceprincipalIdClaimsmappingpoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130412,135 +130092,135 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPathsVtc05SServiceprincipalsServiceprincipalIdClaimsmappingpoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsVtc05SServiceprincipalsServiceprincipalIdClaimsmappingpoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalCreatedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalCreatedObjectByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsK20NafServiceprincipalsServiceprincipalIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsK20NafServiceprincipalsServiceprincipalIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalCreatedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalCreatedObjectByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsK20NafServiceprincipalsServiceprincipalIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsK20NafServiceprincipalsServiceprincipalIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalDelegatedPermissionClassification", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalDelegatedPermissionClassification", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEndpoint", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalFederatedIdentityCredential", "Uri": "/servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130561,20 +130241,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1DezianServiceprincipalsServiceprincipalIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1DezianServiceprincipalsServiceprincipalIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130595,125 +130275,125 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1DezianServiceprincipalsServiceprincipalIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1DezianServiceprincipalsServiceprincipalIdHomerealmdiscoverypoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalLicenseDetail", "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphLicenseDetails", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Alo6Q5ServiceprincipalsServiceprincipalIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Alo6Q5ServiceprincipalsServiceprincipalIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Alo6Q5ServiceprincipalsServiceprincipalIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Alo6Q5ServiceprincipalsServiceprincipalIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOauth2PermissionGrantByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOauth2PermissionGrantByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Wv6Rz0ServiceprincipalsServiceprincipalIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Wv6Rz0ServiceprincipalsServiceprincipalIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOauth2PermissionGrantByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOauth2PermissionGrantByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Wv6Rz0ServiceprincipalsServiceprincipalIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Wv6Rz0ServiceprincipalsServiceprincipalIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOwnedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOwnedObjectByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsRw1SvpServiceprincipalsServiceprincipalIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsRw1SvpServiceprincipalsServiceprincipalIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOwnedObjectByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOwnedObjectByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsRw1SvpServiceprincipalsServiceprincipalIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsRw1SvpServiceprincipalsServiceprincipalIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOwnerByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130734,20 +130414,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPaths1Twal2ZServiceprincipalsServiceprincipalIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Twal2ZServiceprincipalsServiceprincipalIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalOwnerByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalOwnerByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130768,20 +130448,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Twal2ZServiceprincipalsServiceprincipalIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Twal2ZServiceprincipalsServiceprincipalIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalPasswordSingleSignOnCredentials", "Uri": "/servicePrincipals/{servicePrincipal-id}/createPasswordSingleSignOnCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalPasswordSingleSignOnCredentials", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130808,130 +130488,130 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationJob", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalSynchronizationJobOnDemand", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalSynchronizationJobOnDemand", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", "Variants": [ "Provision", "ProvisionExpanded", "ProvisionViaIdentity", "ProvisionViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphStringKeyStringValuePair", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalSynchronizationTemplate", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalSynchronizationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSynchronizationTemplate", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryDefinition", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTokenIssuancePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTokenIssuancePolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Kclb4IServiceprincipalsServiceprincipalIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Kclb4IServiceprincipalsServiceprincipalIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTokenIssuancePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTokenIssuancePolicyByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Kclb4IServiceprincipalsServiceprincipalIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Kclb4IServiceprincipalsServiceprincipalIdTokenissuancepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTokenLifetimePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130952,20 +130632,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IPathsOkmdkwServiceprincipalsServiceprincipalIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsOkmdkwServiceprincipalsServiceprincipalIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTokenLifetimePolicyByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTokenLifetimePolicyByRef", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -130986,293 +130666,291 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IPathsOkmdkwServiceprincipalsServiceprincipalIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsOkmdkwServiceprincipalsServiceprincipalIdTokenlifetimepoliciesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTransitiveMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsWgwyuoServiceprincipalsServiceprincipalIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsWgwyuoServiceprincipalsServiceprincipalIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgServicePrincipalTransitiveMemberOfByRef", "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgServicePrincipalTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsWgwyuoServiceprincipalsServiceprincipalIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsWgwyuoServiceprincipalsServiceprincipalIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Applications" }, { - "Command": "New-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "New-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "New-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "New-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "New-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Files" }, { - "Command": "New-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeBaseTypeByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsWr0Gp2SharesShareddriveitemIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsWr0Gp2SharesShareddriveitemIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeBaseTypeByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsWr0Gp2SharesShareddriveitemIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsWr0Gp2SharesShareddriveitemIdListContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumnPositionByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths4Aq8TSharesShareddriveitemIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths4Aq8TSharesShareddriveitemIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgShareListContentTypeColumnPositionByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths4Aq8TSharesShareddriveitemIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths4Aq8TSharesShareddriveitemIdListContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Files" }, { - "Command": "New-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Files" }, { - "Command": "New-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Files" }, { - "Command": "New-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create", "Create1", @@ -131282,16 +130960,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "New-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create2", "Create3", @@ -131301,95 +130979,97 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Files" }, { - "Command": "New-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Files" }, { - "Command": "New-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Files" }, { - "Command": "New-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem", + "Module": "Files" }, { - "Command": "New-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSharedDriveItem1", + "Module": "Files" }, { - "Command": "New-MgSite", "Uri": "/sites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Create3", "CreateExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "New-MgSite", "Uri": "/sites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "New-MgSiteColumn", "Uri": "/sites/{site-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131404,20 +131084,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "New-MgSiteColumn", "Uri": "/sites/{site-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131432,20 +131112,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "New-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131460,20 +131140,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ - "Create1", - "CreateExpanded1", - "CreateViaIdentity1", - "CreateViaIdentityExpanded1" - ] + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "New-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131488,50 +131168,50 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ] + "Create1", + "CreateExpanded1", + "CreateViaIdentity1", + "CreateViaIdentityExpanded1" + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths19Y6J1ZSitesSiteIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths19Y6J1ZSitesSiteIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths19Y6J1ZSitesSiteIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths19Y6J1ZSitesSiteIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131546,20 +131226,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131574,180 +131254,180 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1CktejiSitesSiteIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1CktejiSitesSiteIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1CktejiSitesSiteIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1CktejiSitesSiteIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteDrive", "Uri": "/sites/{site-id}/drives", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Sites" }, { - "Command": "New-MgSiteDrive", "Uri": "/sites/{site-id}/drives", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Sites" }, { - "Command": "New-MgSiteExternalColumnByRef", "Uri": "/sites/{site-id}/externalColumns/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteExternalColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths11Zlb5ESitesSiteIdExternalcolumnsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths11Zlb5ESitesSiteIdExternalcolumnsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteExternalColumnByRef", "Uri": "/sites/{site-id}/externalColumns/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteExternalColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths11Zlb5ESitesSiteIdExternalcolumnsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths11Zlb5ESitesSiteIdExternalcolumnsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteList", "Uri": "/sites/{site-id}/lists", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteList", "Permissions": { "Name": "Sites.Manage.All", "Description": "Create, edit, and delete items and lists in all your site collections", "FullDescription": "Allow the application to create or delete document libraries and lists in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphList", + "Module": "Sites" }, { - "Command": "New-MgSiteList", "Uri": "/sites/{site-id}/lists", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteList", "Permissions": { "Name": "Sites.Manage.All", "Description": "Create, edit, and delete items and lists in all your site collections", "FullDescription": "Allow the application to create or delete document libraries and lists in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphList1", + "Module": "Sites" }, { - "Command": "New-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131762,20 +131442,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "New-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131790,80 +131470,80 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContentType", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContentType1", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsC8A68OSitesSiteIdListsListIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsC8A68OSitesSiteIdListsListIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeBaseTypeByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeBaseTypeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsC8A68OSitesSiteIdListsListIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsC8A68OSitesSiteIdListsListIdContenttypesContenttypeIdBasetypesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131878,20 +131558,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -131906,120 +131586,120 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnDefinition1", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphColumnLink", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths10Znk45SitesSiteIdListsListIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths10Znk45SitesSiteIdListsListIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteListContentTypeColumnPositionByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListContentTypeColumnPositionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths10Znk45SitesSiteIdListsListIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths10Znk45SitesSiteIdListsListIdContenttypesContenttypeIdColumnpositionsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListItem", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphListItem", + "Module": "Sites" }, { - "Command": "New-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListItem", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItem1", + "Module": "Sites" }, { - "Command": "New-MgSiteListItemLink", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListItemLink", "Permissions": [ { "Name": "Files.ReadWrite", @@ -132040,80 +131720,95 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "New-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "New-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphListItemVersion", + "Module": "Sites" }, { - "Command": "New-MgSiteListSubscription", - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRichLongRunningOperation", + "Module": "Sites" }, { - "Command": "New-MgSiteListSubscription", "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteListSubscription", "Permissions": [], + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription1", + "Method": "POST", + "Command": "New-MgSiteListSubscription", + "Permissions": [], "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "Sites" }, { - "Command": "New-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -132134,20 +131829,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -132168,20 +131863,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteNotebookSection", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -132202,20 +131897,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteNotebookSection", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -132236,20 +131931,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteNotebookSectionGroup", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -132270,20 +131965,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteNotebookSectionGroup", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -132304,20 +131999,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -132338,20 +132033,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -132372,53 +132067,51 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create2", "Create3", @@ -132428,16 +132121,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create", "Create1", @@ -132447,13 +132140,15 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionGroupSection", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -132474,20 +132169,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionGroupSection", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -132508,20 +132203,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionPage", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -132542,20 +132237,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgSiteOnenoteSectionPage", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgSiteOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -132576,93 +132271,91 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgSitePage", "Uri": "/sites/{site-id}/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSitePage", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSitePage", + "Module": "Sites" }, { - "Command": "New-MgSitePermission", "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "New-MgSitePermission", "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPermission1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStore", "Uri": "/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTermStore1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroup", "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroup", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup1", "Variants": [ "Create", "Create1", @@ -132672,16 +132365,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreGroup1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Create", "Create1", @@ -132691,16 +132384,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132718,16 +132411,16 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetChildRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132737,16 +132430,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132756,16 +132449,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132775,16 +132468,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetTermChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132794,16 +132487,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreGroupSetTermRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreGroupSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132813,21 +132506,21 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSet", "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSet", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Create", "Create1", @@ -132837,21 +132530,21 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetChild", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132869,16 +132562,16 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetChildRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132888,16 +132581,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetParentGroupSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetParentGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet1", "Variants": [ "Create", "Create1", @@ -132907,16 +132600,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreSet1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132926,16 +132619,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132945,21 +132638,21 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetTermChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetTermChild", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm1", "Variants": [ "Create", "Create1", @@ -132969,21 +132662,21 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreTerm1", + "Module": "Sites" }, { - "Command": "New-MgSiteTermStoreSetTermRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSiteTermStoreSetTermRelation", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation1", "Variants": [ "Create", "Create1", @@ -132993,95 +132686,97 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTermStoreRelation1", + "Module": "Sites" }, { - "Command": "New-MgSubscribedSku", "Uri": "/subscribedSkus", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgSubscribedSku", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgSubscribedSku", "Uri": "/subscribedSkus", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgSubscribedSku", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscribedSku", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgSubscription", "Uri": "/subscriptions", + "ApiVersion": "beta", "Method": "POST", - "Module": "ChangeNotifications", + "Command": "New-MgSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription1", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSubscription1", + "Module": "ChangeNotifications" }, { - "Command": "New-MgSubscription", "Uri": "/subscriptions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "ChangeNotifications", + "Command": "New-MgSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSubscription", + "Module": "ChangeNotifications" }, { - "Command": "New-MgSubSite", "Uri": "/sites/{site-id}/sites", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSubSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSite", + "Module": "Sites" }, { - "Command": "New-MgSubSite", "Uri": "/sites/{site-id}/sites", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgSubSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite1", "Variants": [ "Create2", "CreateExpanded2", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSite1", + "Module": "Sites" }, { - "Command": "New-MgTeam", "Uri": "/teams", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133102,18 +132797,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeam", + "Module": "Teams" }, { - "Command": "New-MgTeam", "Uri": "/teams", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133134,18 +132829,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "New-MgTeamChannel", "Uri": "/teams/{team-id}/channels", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannel", "Permissions": [ { "Name": "Channel.Create", @@ -133166,20 +132861,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChannel", + "Module": "Teams" }, { - "Command": "New-MgTeamChannel", "Uri": "/teams/{team-id}/channels", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannel", "Permissions": [ { "Name": "Channel.Create", @@ -133200,96 +132895,96 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChannel1", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelEmail", "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelEmail", "Permissions": { "Name": "ChannelSettings.ReadWrite.All", "Description": "Read and write the names, descriptions, and settings of channels", "FullDescription": "Read and write the names, descriptions, and settings of all channels, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Provision", "ProvisionViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "New-MgTeamChannelEmail", "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelEmail", "Permissions": { "Name": "ChannelSettings.ReadWrite.All", "Description": "Read and write the names, descriptions, and settings of channels", "FullDescription": "Read and write the names, descriptions, and settings of all channels, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Provision1", "ProvisionViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMember", "Permissions": { "Name": "ChannelMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from channels, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMember", "Permissions": { "Name": "ChannelMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from channels, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessage", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -133310,20 +133005,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessage", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -133344,50 +133039,50 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessageHostedContent", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessageReply", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -133414,20 +133109,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelMessageReply", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -133454,20 +133149,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133500,20 +133195,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "New-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133546,20 +133241,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "New-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133580,20 +133275,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "New-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -133614,296 +133309,296 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "New-MgTeamMember", "Uri": "/teams/{team-id}/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamMember", "Uri": "/teams/{team-id}/members", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamOperation", "Uri": "/teams/{team-id}/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation", + "Module": "Teams" }, { - "Command": "New-MgTeamOperation", "Uri": "/teams/{team-id}/operations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation1", + "Module": "Teams" }, { - "Command": "New-MgTeamOwnerByRef", "Uri": "/teams/{team-id}/owners/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamOwnerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Pdl411TeamsTeamIdOwnersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Pdl411TeamsTeamIdOwnersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Teams" }, { - "Command": "New-MgTeamPermissionGrant", "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelEmail", "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelEmail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Provision", "ProvisionViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelEmail", "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelEmail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Provision1", "ProvisionViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphConversationMember", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessageHostedContent", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessageHostedContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessageHostedContent", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChatMessage1", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab", + "Module": "Teams" }, { - "Command": "New-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTeamsTab1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOfferShiftRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -133918,20 +133613,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOfferShiftRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -133946,20 +133641,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -133974,20 +133669,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134002,20 +133697,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShift1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134030,20 +133725,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134058,20 +133753,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134086,20 +133781,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134114,20 +133809,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSchedulingGroup1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134142,20 +133837,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphShift", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134170,20 +133865,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphShift1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134198,20 +133893,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134226,40 +133921,40 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeCard", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134274,20 +133969,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeOff", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134302,20 +133997,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOff1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134330,20 +134025,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -134358,172 +134053,172 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffReason1", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOffRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest", + "Module": "Teams" }, { - "Command": "New-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamScheduleTimeOffRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTimeOffRequest1", + "Module": "Teams" }, { - "Command": "New-MgTeamTag", "Uri": "/teams/{team-id}/tags", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTag", + "Module": "Teams" }, { - "Command": "New-MgTeamTagMember", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamTagMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeamworkTagMember", + "Module": "Teams" }, { - "Command": "New-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration", + "Module": "Teams" }, { - "Command": "New-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWorkforceIntegration1", + "Module": "Teams" }, { - "Command": "New-MgTrustFrameworkKeySet", "Uri": "/trustFramework/keySets", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgTrustFrameworkKeySet", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", + "Module": "Identity.SignIns" }, { - "Command": "New-MgTrustFrameworkKeySetKey", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/generateKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgTrustFrameworkKeySetKey", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", "Variants": [ "Generate", "GenerateExpanded", "GenerateViaIdentity", "GenerateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTrustFrameworkKey", + "Module": "Identity.SignIns" }, { - "Command": "New-MgTrustFrameworkPolicy", "Uri": "/trustFramework/policies", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgTrustFrameworkPolicy", "Permissions": { "Name": "Policy.ReadWrite.TrustFramework", "Description": "Read and write trust framework policies", "FullDescription": "Allows the app to read and write your organization's trust framework policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "New-MgUser", "Uri": "/users", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -134568,18 +134263,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users" }, { - "Command": "New-MgUser", "Uri": "/users", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -134624,108 +134319,108 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "Create1", "CreateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users" }, { - "Command": "New-MgUserActivity", "Uri": "/users/{user-id}/activities", + "ApiVersion": "beta", "Method": "POST", - "Module": "CrossDeviceExperiences", + "Command": "New-MgUserActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity1", + "Module": "CrossDeviceExperiences" }, { - "Command": "New-MgUserActivity", "Uri": "/users/{user-id}/activities", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CrossDeviceExperiences", + "Command": "New-MgUserActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUserActivity", + "Module": "CrossDeviceExperiences" }, { - "Command": "New-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "beta", "Method": "POST", - "Module": "CrossDeviceExperiences", + "Command": "New-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem1", + "Module": "CrossDeviceExperiences" }, { - "Command": "New-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CrossDeviceExperiences", + "Command": "New-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphActivityHistoryItem", + "Module": "CrossDeviceExperiences" }, { - "Command": "New-MgUserAgreementAcceptanceByRef", "Uri": "/users/{user-id}/agreementAcceptances/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgUserAgreementAcceptanceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgUserAgreementAcceptanceByRef", "Uri": "/users/{user-id}/agreementAcceptances/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "New-MgUserAgreementAcceptanceByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Identity.Governance" }, { - "Command": "New-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "New-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -134740,20 +134435,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment1", + "Module": "Applications" }, { - "Command": "New-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "New-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -134768,20 +134463,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAppRoleAssignment", + "Module": "Applications" }, { - "Command": "New-MgUserAuthenticationEmailMethod", "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationEmailMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -134796,175 +134491,175 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationFido2Method", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationFido2Method", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationMethod", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationOperation", "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphLongRunningOperation", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationPhoneMethod", "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationPhoneMethod", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationSoftwareOathMethod", "Uri": "/users/{user-id}/authentication/softwareOathMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationSoftwareOathMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationTemporaryAccessPassMethod", "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationTemporaryAccessPassMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -134979,213 +134674,211 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationWindowHello", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "New-MgUserAuthenticationWindowHello", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod1", + "Module": "Identity.SignIns" }, { - "Command": "New-MgUserCalendar", "Uri": "/users/{user-id}/calendars", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendar", "Uri": "/users/{user-id}/calendars", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarEvent", "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarEvent", "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup1", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCalendarGroup", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarGroupCalendar", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarGroupCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCalendar1", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarGroupCalendar", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarGroupCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCalendar", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create2", "Create3", @@ -135195,16 +134888,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "Create1", @@ -135214,16 +134907,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Create2", "Create3", @@ -135233,16 +134926,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", "Variants": [ "Create", "Create1", @@ -135252,16 +134945,16 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCalendarPermission", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "Create3", @@ -135271,16 +134964,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendar/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "Create2", @@ -135290,688 +134983,690 @@ "CreateViaIdentity2", "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserChat", "Uri": "/users/{user-id}/chats", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphChat", + "Module": "Teams" }, { - "Command": "New-MgUserChat", "Uri": "/users/{user-id}/chats", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserChat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphChat1", + "Module": "Teams" }, { - "Command": "New-MgUserContact", "Uri": "/users/{user-id}/contacts", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContact", "Uri": "/users/{user-id}/contacts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderChildFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderChildFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContactFolder1", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphContact", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphContact1", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "PersonalContacts", + "Command": "New-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "PersonalContacts" }, { - "Command": "New-MgUserCreatedObjectByRef", "Uri": "/users/{user-id}/createdObjects/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserCreatedObjectByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsJuuflzUsersUserIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsJuuflzUsersUserIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserCreatedObjectByRef", "Uri": "/users/{user-id}/createdObjects/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserCreatedObjectByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsJuuflzUsersUserIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsJuuflzUsersUserIdCreatedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserDevice", "Uri": "/users/{user-id}/devices", + "ApiVersion": "beta", "Method": "POST", - "Module": "CrossDeviceExperiences", + "Command": "New-MgUserDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDevice", + "Module": "CrossDeviceExperiences" }, { - "Command": "New-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserDeviceEnrollmentConfigurationAssignment", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserDeviceEnrollmentConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserDirectReportByRef", "Uri": "/users/{user-id}/directReports/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserDirectReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1458KgkUsersUserIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1458KgkUsersUserIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserDirectReportByRef", "Uri": "/users/{user-id}/directReports/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserDirectReportByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1458KgkUsersUserIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1458KgkUsersUserIdDirectreportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserDrive", "Uri": "/users/{user-id}/drives", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "New-MgUserDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDrive", + "Module": "Files" }, { - "Command": "New-MgUserDrive", "Uri": "/users/{user-id}/drives", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "New-MgUserDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDrive1", + "Module": "Files" }, { - "Command": "New-MgUserEvent", "Uri": "/users/{user-id}/events", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgUserEvent", "Uri": "/users/{user-id}/events", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "New-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventAttachment", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "New-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventAttachment", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Calendar" }, { - "Command": "New-MgUserEventAttachmentUploadSession", "Uri": "/users/{user-id}/events/{event-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserEventAttachmentUploadSession", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -135986,20 +135681,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserEventAttachmentUploadSession", "Uri": "/users/{user-id}/events/{event-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserEventAttachmentUploadSession", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -136014,910 +135709,910 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserEventExceptionOccurrence", "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "New-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "New-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvent1", + "Module": "Calendar" }, { - "Command": "New-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphEvent", + "Module": "Calendar" }, { - "Command": "New-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Calendar", + "Command": "New-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Calendar" }, { - "Command": "New-MgUserExtension", "Uri": "/users/{user-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserExtension", "Uri": "/users/{user-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserFollowedSiteByRef", "Uri": "/users/{user-id}/followedSites/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "New-MgUserFollowedSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsMsi3LgUsersUserIdFollowedsitesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsMsi3LgUsersUserIdFollowedsitesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgUserFollowedSiteByRef", "Uri": "/users/{user-id}/followedSites/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "New-MgUserFollowedSiteByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsMsi3LgUsersUserIdFollowedsitesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsMsi3LgUsersUserIdFollowedsitesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Sites" }, { - "Command": "New-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "New-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride", + "Module": "Mail" }, { - "Command": "New-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintDocumentUploadSession", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintDocumentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserInsightSharedResourceMicrosoftGraphPrintDocumentUploadSession", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserInsightSharedResourceMicrosoftGraphPrintDocumentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserInsightTrendingResourceMicrosoftGraphPrintDocumentUploadSession", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserInsightTrendingResourceMicrosoftGraphPrintDocumentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserInsightUsedResourceMicrosoftGraphPrintDocumentUploadSession", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserInsightUsedResourceMicrosoftGraphPrintDocumentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserJoinedGroup", "Uri": "/users/{user-id}/joinedGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "New-MgUserJoinedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "New-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserJoinedTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTeam1", + "Module": "Teams" }, { - "Command": "New-MgUserJoinedTeamByRef", "Uri": "/users/{user-id}/joinedTeams/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserJoinedTeamByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths8Nn7HdUsersUserIdJoinedteamsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths8Nn7HdUsersUserIdJoinedteamsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Teams" }, { - "Command": "New-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderChildFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder1", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderChildFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMailFolder", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageAttachment", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageAttachment", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageForward", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageForward", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageForward", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageForward", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageMention", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageReply", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageReply", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create2", "CreateExpanded2", "CreateViaIdentity2", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageReply", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageReply", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageReplyAll", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageReplyAll", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create3", "CreateExpanded3", "CreateViaIdentity3", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageReplyAll", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMailFolderMessageReplyAll", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessageRule", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMailFolderUserConfiguration", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMailFolderUserConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserConfiguration", + "Module": "Mail" }, { - "Command": "New-MgUserManagedAppRegistrationByRef", "Uri": "/users/{user-id}/managedAppRegistrations/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedAppRegistrationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Uxfgf2UsersUserIdManagedappregistrationsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Uxfgf2UsersUserIdManagedappregistrationsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedAppRegistrationByRef", "Uri": "/users/{user-id}/managedAppRegistrations/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedAppRegistrationByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Uxfgf2UsersUserIdManagedappregistrationsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Uxfgf2UsersUserIdManagedappregistrationsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -136938,20 +136633,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -136972,374 +136667,374 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphManagedDevice1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationState1", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceDetectedAppByRef", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceDetectedAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Ifr0BfUsersUserIdManageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Ifr0BfUsersUserIdManageddevicesManageddeviceIdDetectedappsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceLogCollectionRequest", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "Users.Actions" }, { - "Command": "New-MgUserManagedDeviceLogCollectionResponse", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceLogCollectionResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceLogCollectionResponseDownloadUrl", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserManagedDeviceLogCollectionResponseDownloadUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "New-MgUserManagedDeviceMobileAppConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceSecurityBaselineState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceSecurityBaselineStateSettingState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceUserByRef", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsClftqaUsersUserIdManageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsClftqaUsersUserIdManageddevicesManageddeviceIdUsersRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "New-MgUserMemberOfByRef", "Uri": "/users/{user-id}/memberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsU8Jh5VUsersUserIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsU8Jh5VUsersUserIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserMemberOfByRef", "Uri": "/users/{user-id}/memberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsU8Jh5VUsersUserIdMemberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsU8Jh5VUsersUserIdMemberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserMessage", "Uri": "/users/{user-id}/messages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Mail" }, { - "Command": "New-MgUserMessage", "Uri": "/users/{user-id}/messages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Mail" }, { - "Command": "New-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageAttachment", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "New-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageAttachment", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Mail" }, { - "Command": "New-MgUserMessageAttachmentUploadSession", "Uri": "/users/{user-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageAttachmentUploadSession", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -137354,20 +137049,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageAttachmentUploadSession", "Uri": "/users/{user-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageAttachmentUploadSession", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -137382,353 +137077,353 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "New-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "New-MgUserMessageForward", "Uri": "/users/{user-id}/messages/{message-id}/createForward", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageForward", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageForward", "Uri": "/users/{user-id}/messages/{message-id}/createForward", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageForward", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageMention", "Uri": "/users/{user-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMention", + "Module": "Mail" }, { - "Command": "New-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMessageReply", "Uri": "/users/{user-id}/messages/{message-id}/createReply", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageReply", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create2", "CreateExpanded2", "CreateViaIdentity2", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageReply", "Uri": "/users/{user-id}/messages/{message-id}/createReply", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageReply", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageReplyAll", "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageReplyAll", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", "Variants": [ "Create3", "CreateExpanded3", "CreateViaIdentity3", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphMessage", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageReplyAll", "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMessageReplyAll", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphMessage1", + "Module": "Users.Actions" }, { - "Command": "New-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Mail", + "Command": "New-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Mail" }, { - "Command": "New-MgUserMobileAppIntentAndState", "Uri": "/users/{user-id}/mobileAppIntentAndStates", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserMobileAppIntentAndState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppIntentAndState", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserMobileAppTroubleshootingEvent", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgUserMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", "Variants": [ "Create", "CreateViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", + "Module": "Users.Actions" }, { - "Command": "New-MgUserNotification", "Uri": "/users/{user-id}/notifications", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserNotification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNotification", + "Module": "Users" }, { - "Command": "New-MgUserOauth2PermissionGrantByRef", "Uri": "/users/{user-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOauth2PermissionGrantByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths2Xrvi4UsersUserIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths2Xrvi4UsersUserIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserOauth2PermissionGrantByRef", "Uri": "/users/{user-id}/oauth2PermissionGrants/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOauth2PermissionGrantByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths2Xrvi4UsersUserIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths2Xrvi4UsersUserIdOauth2PermissiongrantsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -137749,20 +137444,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphNotebook1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebook", "Permissions": [ { "Name": "Notes.Create", @@ -137783,20 +137478,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphNotebook", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteNotebookSection", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -137817,20 +137512,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteNotebookSection", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebookSection", "Permissions": [ { "Name": "Notes.Create", @@ -137851,20 +137546,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteNotebookSectionGroup", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -137885,20 +137580,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteNotebookSectionGroup", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteNotebookSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -137919,20 +137614,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -137953,20 +137648,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.Create", @@ -137987,50 +137682,50 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionGroup", "Permissions": [ { "Name": "Notes.Create", @@ -138051,8 +137746,6 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup1", "Variants": [ "Create", "Create3", @@ -138062,16 +137755,16 @@ "CreateViaIdentity3", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded3" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", "Variants": [ "Create1", "Create2", @@ -138081,13 +137774,15 @@ "CreateViaIdentity2", "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" - ] + ], + "OutputType": "IMicrosoftGraphSectionGroup", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionGroupSection", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -138108,20 +137803,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection1", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionGroupSection", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionGroupSection", "Permissions": [ { "Name": "Notes.Create", @@ -138142,20 +137837,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenoteSection", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionPage", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -138176,20 +137871,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage1", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage", + "Module": "Notes" }, { - "Command": "New-MgUserOnenoteSectionPage", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Notes", + "Command": "New-MgUserOnenoteSectionPage", "Permissions": [ { "Name": "Notes.Create", @@ -138210,78 +137905,91 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnenotePage1", + "Module": "Notes" }, { - "Command": "New-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting1", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOnlineMeeting", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOnlineMeetingAttendanceReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOnlineMeetingAttendanceReportAttendanceRecord", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeetingAttendanceReport", "Permissions": [], + "Variants": [ + "Create1", + "CreateExpanded1", + "CreateViaIdentity1", + "CreateViaIdentityExpanded1" + ], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport", + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", + "Method": "POST", + "Command": "New-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Create", "Create1", @@ -138291,568 +137999,585 @@ "CreateViaIdentity1", "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOnlineMeetingRegistrationCustomQuestion", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], + "Variants": [ + "Create2", + "CreateExpanded2", + "CreateViaIdentity2", + "CreateViaIdentityExpanded2" + ], + "OutputType": "IMicrosoftGraphAttendanceRecord", + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Method": "POST", + "Command": "New-MgUserOnlineMeetingRegistrationCustomQuestion", + "Permissions": [], "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOnlineMeetingRegistrationRegistrant", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "New-MgUserOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrant", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMeetingRegistrant", + "Module": "CloudCommunications" }, { - "Command": "New-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "New-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookCategory", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskAttachment", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskAttachment", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskAttachmentUploadSession", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserOutlookTaskAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserOutlookTaskFolder", "Uri": "/users/{user-id}/outlook/taskFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderTaskAttachmentUploadSession", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserOutlookTaskFolderTaskAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroup", "Uri": "/users/{user-id}/outlook/taskGroups", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroup", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskGroup", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolder", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTaskFolder", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOutlookTask", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphAttachment", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskAttachmentUploadSession", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskAttachmentUploadSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUploadSession", + "Module": "Users.Actions" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphMultiValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOutlookTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOutlookTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSingleValueLegacyExtendedProperty", + "Module": "Users" }, { - "Command": "New-MgUserOwnedDeviceByRef", "Uri": "/users/{user-id}/ownedDevices/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOwnedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsV0VjysUsersUserIdOwneddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsV0VjysUsersUserIdOwneddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserOwnedDeviceByRef", "Uri": "/users/{user-id}/ownedDevices/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOwnedDeviceByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsV0VjysUsersUserIdOwneddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsV0VjysUsersUserIdOwneddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserOwnedObjectByRef", "Uri": "/users/{user-id}/ownedObjects/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOwnedObjectByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1Frl3PiUsersUserIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1Frl3PiUsersUserIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserOwnedObjectByRef", "Uri": "/users/{user-id}/ownedObjects/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserOwnedObjectByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1Frl3PiUsersUserIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1Frl3PiUsersUserIdOwnedobjectsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserPerson", "Uri": "/users/{user-id}/people", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserPerson", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPerson1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphPerson1", + "Module": "People" }, { - "Command": "New-MgUserPerson", "Uri": "/users/{user-id}/people", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "People", + "Command": "New-MgUserPerson", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPerson", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPerson", + "Module": "People" }, { - "Command": "New-MgUserPhoto", "Uri": "/users/{user-id}/photos", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "New-MgUserPhoto", "Uri": "/users/{user-id}/photos", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphProfilePhoto", + "Module": "Users" }, { - "Command": "New-MgUserProfileAccount", "Uri": "/users/{user-id}/profile/account", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -138867,20 +138592,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserAccountInformation", + "Module": "People" }, { - "Command": "New-MgUserProfileAddress", "Uri": "/users/{user-id}/profile/addresses", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileAddress", "Permissions": [ { "Name": "User.ReadWrite", @@ -138895,20 +138620,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemAddress", + "Module": "People" }, { - "Command": "New-MgUserProfileAnniversary", "Uri": "/users/{user-id}/profile/anniversaries", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileAnniversary", "Permissions": [ { "Name": "User.ReadWrite", @@ -138923,20 +138648,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnualEvent", + "Module": "People" }, { - "Command": "New-MgUserProfileAward", "Uri": "/users/{user-id}/profile/awards", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileAward", "Permissions": [ { "Name": "User.ReadWrite", @@ -138951,20 +138676,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonAward", + "Module": "People" }, { - "Command": "New-MgUserProfileCertification", "Uri": "/users/{user-id}/profile/certifications", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileCertification", "Permissions": [ { "Name": "User.ReadWrite", @@ -138979,20 +138704,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonCertification", + "Module": "People" }, { - "Command": "New-MgUserProfileEducationalActivity", "Uri": "/users/{user-id}/profile/educationalActivities", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileEducationalActivity", "Permissions": [ { "Name": "User.ReadWrite", @@ -139007,20 +138732,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEducationalActivity", + "Module": "People" }, { - "Command": "New-MgUserProfileEmail", "Uri": "/users/{user-id}/profile/emails", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileEmail", "Permissions": [ { "Name": "User.ReadWrite", @@ -139035,20 +138760,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemEmail", + "Module": "People" }, { - "Command": "New-MgUserProfileInterest", "Uri": "/users/{user-id}/profile/interests", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileInterest", "Permissions": [ { "Name": "User.ReadWrite", @@ -139063,20 +138788,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonInterest", + "Module": "People" }, { - "Command": "New-MgUserProfileLanguage", "Uri": "/users/{user-id}/profile/languages", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileLanguage", "Permissions": [ { "Name": "User.ReadWrite", @@ -139091,20 +138816,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphLanguageProficiency", + "Module": "People" }, { - "Command": "New-MgUserProfileName", "Uri": "/users/{user-id}/profile/names", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileName", "Permissions": [ { "Name": "User.Read", @@ -139137,20 +138862,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonName", + "Module": "People" }, { - "Command": "New-MgUserProfileNote", "Uri": "/users/{user-id}/profile/notes", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileNote", "Permissions": [ { "Name": "User.ReadWrite", @@ -139165,20 +138890,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonAnnotation", + "Module": "People" }, { - "Command": "New-MgUserProfilePatent", "Uri": "/users/{user-id}/profile/patents", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfilePatent", "Permissions": [ { "Name": "User.ReadWrite", @@ -139193,20 +138918,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemPatent", + "Module": "People" }, { - "Command": "New-MgUserProfilePhone", "Uri": "/users/{user-id}/profile/phones", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfilePhone", "Permissions": [ { "Name": "User.ReadWrite", @@ -139221,20 +138946,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemPhone", + "Module": "People" }, { - "Command": "New-MgUserProfilePosition", "Uri": "/users/{user-id}/profile/positions", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfilePosition", "Permissions": [ { "Name": "User.ReadWrite", @@ -139249,20 +138974,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWorkPosition", + "Module": "People" }, { - "Command": "New-MgUserProfileProject", "Uri": "/users/{user-id}/profile/projects", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileProject", "Permissions": [ { "Name": "User.ReadWrite", @@ -139277,20 +139002,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphProjectParticipation", + "Module": "People" }, { - "Command": "New-MgUserProfilePublication", "Uri": "/users/{user-id}/profile/publications", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfilePublication", "Permissions": [ { "Name": "User.ReadWrite", @@ -139305,20 +139030,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphItemPublication", + "Module": "People" }, { - "Command": "New-MgUserProfileSkill", "Uri": "/users/{user-id}/profile/skills", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileSkill", "Permissions": [ { "Name": "User.ReadWrite", @@ -139333,20 +139058,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphSkillProficiency", + "Module": "People" }, { - "Command": "New-MgUserProfileWebAccount", "Uri": "/users/{user-id}/profile/webAccounts", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileWebAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -139361,20 +139086,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWebAccount", + "Module": "People" }, { - "Command": "New-MgUserProfileWebsite", "Uri": "/users/{user-id}/profile/websites", + "ApiVersion": "beta", "Method": "POST", - "Module": "People", + "Command": "New-MgUserProfileWebsite", "Permissions": [ { "Name": "User.ReadWrite", @@ -139389,80 +139114,80 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPersonWebsite", + "Module": "People" }, { - "Command": "New-MgUserRegisteredDeviceByRef", "Uri": "/users/{user-id}/registeredDevices/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserRegisteredDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPaths1VwscaxUsersUserIdRegistereddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPaths1VwscaxUsersUserIdRegistereddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserRegisteredDeviceByRef", "Uri": "/users/{user-id}/registeredDevices/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserRegisteredDeviceByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPaths1VwscaxUsersUserIdRegistereddevicesRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPaths1VwscaxUsersUserIdRegistereddevicesRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "New-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership", + "Module": "Identity.DirectoryManagement" }, { - "Command": "New-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForUser", @@ -139477,20 +139202,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", + "Module": "Teams" }, { - "Command": "New-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "New-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForUser", @@ -139505,340 +139230,340 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation1", + "Module": "Teams" }, { - "Command": "New-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "New-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTaskList", + "Module": "Users" }, { - "Command": "New-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "New-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTodoTask", + "Module": "Users" }, { - "Command": "New-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "New-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "New-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphLinkedResource", + "Module": "Users" }, { - "Command": "New-MgUserTransitiveMemberOfByRef", "Uri": "/users/{user-id}/transitiveMemberOf/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsU1A5HpUsersUserIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsU1A5HpUsersUserIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserTransitiveMemberOfByRef", "Uri": "/users/{user-id}/transitiveMemberOf/$ref", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTransitiveMemberOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IPathsU1A5HpUsersUserIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" - ] + ], + "OutputType": "IPathsU1A5HpUsersUserIdTransitivememberofRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserTransitiveReportByRef", "Uri": "/users/{user-id}/transitiveReports/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users", + "Command": "New-MgUserTransitiveReportByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsEfjhd9UsersUserIdTransitivereportsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsEfjhd9UsersUserIdTransitivereportsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Users" }, { - "Command": "New-MgUserWindowInformationProtectionDeviceRegistrationByRef", "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/$ref", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "New-MgUserWindowInformationProtectionDeviceRegistrationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IPathsA9Iy0YUsersUserIdWindowsinformationprotectiondeviceregistrationsRefPostResponses201ContentApplicationJsonSchema", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ] + ], + "OutputType": "IPathsA9Iy0YUsersUserIdWindowsinformationprotectiondeviceregistrationsRefPostResponses201ContentApplicationJsonSchema", + "Module": "Devices.CorporateManagement" }, { - "Command": "New-MgWindowsUpdatesDeployment", "Uri": "/admin/windows/updates/deployments", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "New-MgWindowsUpdatesDeployment", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", + "Module": "WindowsUpdates" }, { - "Command": "New-MgWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "New-MgWindowsUpdatesUpdatableAsset", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Create", "CreateExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Ping-MgApplicationsSynchronization", "Uri": "/applications/{application-id}/synchronization/Ping", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Ping-MgApplicationsSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Ping", "PingViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Ping-MgServicePrincipalsSynchronization", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/Ping", + "ApiVersion": "beta", "Method": "GET", - "Module": "Applications", + "Command": "Ping-MgServicePrincipalsSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Ping", "PingViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Publish-MgBookingBusiness", "Uri": "/bookingBusinesses/{bookingBusiness-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "Publish-MgBookingBusiness", "Permissions": { "Name": "Bookings.Manage.All", "Description": "Manage bookings information", "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Publish-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/release", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Publish-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -139853,18 +139578,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Release", "ReleaseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/release", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -139879,70 +139604,70 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Release", "ReleaseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Publish-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Publish-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -139957,18 +139682,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Publish-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Publish-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -139983,236 +139708,210 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment1", + "Module": "Education" }, { - "Command": "Publish-MgEducationMeAssignment", "Uri": "/education/me/assignments/{educationAssignment-id}/publish", - "Method": "POST", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Publish1", - "PublishViaIdentity1" - ] - }, - { - "Command": "Publish-MgEducationMeAssignment", - "Uri": "/education/me/assignments/{educationAssignment-id}/publish", "Method": "POST", - "Module": "Education", + "Command": "Publish-MgEducationMeAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Publish-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Publish-MgEducationUserAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Publish", "PublishViaIdentity" - ] - }, - { - "Command": "Publish-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Publish1", - "PublishViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Publish-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Publish-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Publish-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteContentType", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteContentType", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/publish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Publish1", "PublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Publish-MgSitePage", "Uri": "/sites/{site-id}/pages/{sitePage-id}/publish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Publish-MgSitePage", "Permissions": [ { "Name": "Files.ReadWrite", @@ -140233,18 +139932,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Publish", "PublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgAccessReview", "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAccessReview", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -140259,57 +139958,57 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAccessReviewInstance", "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAccessReviewMyDecision", "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAccessReviewMyDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAccessReviewReviewer", "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAccessReviewReviewer", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -140324,18 +140023,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAdministrativeUnit", "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -140350,31 +140049,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgAdministrativeUnitExtension", "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgAdministrativeUnitScopedRoleMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -140389,174 +140088,174 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFile", "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFile", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -140577,18 +140276,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamApp", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -140609,18 +140308,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinition", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -140641,18 +140340,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinition", "Permissions": [ { "Name": "AppCatalog.ReadWrite.All", @@ -140673,96 +140372,96 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionColorIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionColorIcon", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionOutlineIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionOutlineIcon", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140777,18 +140476,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140803,57 +140502,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationConnectorGroupByRef", "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationConnectorGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140868,18 +140567,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationExtensionProperty", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140894,61 +140593,61 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationFederatedIdentityCredential", "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationKey", "Uri": "/applications/{application-id}/removeKey", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgApplicationKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove1", "RemoveExpanded1", "RemoveViaIdentity1", "RemoveViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationKey", "Uri": "/applications/{application-id}/removeKey", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgApplicationKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationPassword", "Uri": "/applications/{application-id}/removePassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgApplicationPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140963,20 +140662,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove1", "RemoveExpanded1", "RemoveViaIdentity1", "RemoveViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationPassword", "Uri": "/applications/{application-id}/removePassword", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgApplicationPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -140991,160 +140690,160 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronization", "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationJobSchema", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationJobSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationTemplate", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationTemplateSchema", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationTemplateSchema", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgBookingBusiness", "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusiness", "Permissions": { "Name": "Bookings.Manage.All", "Description": "Manage bookings information", "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -141165,31 +140864,31 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusinessCalendarView", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingBusinessCustomer", "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusinessCustomer", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -141210,18 +140909,31 @@ "IsAdmin": false } ], - "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], "OutputType": null, + "Module": "Bookings" + }, + { + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessCustomQuestion", + "Permissions": [], "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingBusinessService", "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusinessService", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -141236,18 +140948,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingBusinessStaffMember", "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingBusinessStaffMember", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -141262,70 +140974,70 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBookingCurrency", "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Bookings", + "Command": "Remove-MgBookingCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Remove-MgBusinessFlowTemplate", "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgBusinessFlowTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForChat", @@ -141340,18 +141052,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForChat", @@ -141366,145 +141078,145 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatLastMessagePreview", "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatLastMessagePreview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatMember", "Permissions": { "Name": "ChatMember.ReadWrite", "Description": "Add and remove members from chats", "FullDescription": "Add and remove members from chats, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatMember", "Permissions": { "Name": "ChatMember.ReadWrite", "Description": "Add and remove members from chats", "FullDescription": "Add and remove members from chats, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatOperation", "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatPermissionGrant", "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatTab", "Permissions": [ { "Name": "TeamsTab.ReadWrite.All", @@ -141519,18 +141231,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatTab", "Permissions": [ { "Name": "TeamsTab.ReadWrite.All", @@ -141545,307 +141257,333 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgCommunicationCall", "Uri": "/communications/calls/{call-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCall", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCall", "Uri": "/communications/calls/{call-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCall", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Delete1", + "Delete2", + "DeleteViaIdentity1", + "DeleteViaIdentity2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", + "Method": "DELETE", + "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReport", + "Permissions": [], "Variants": [ "Delete", - "Delete1", - "DeleteViaIdentity", - "DeleteViaIdentity1" - ] + "DeleteViaIdentity" + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Delete1", + "Delete2", + "DeleteViaIdentity1", + "DeleteViaIdentity2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", + "Method": "DELETE", + "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Delete", - "Delete1", - "DeleteViaIdentity", - "DeleteViaIdentity1" - ] + "DeleteViaIdentity" + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeetingRegistration", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeetingRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationOnlineMeetingRegistrationRegistrant", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgComplianceEdiscovery", "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscovery", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -141860,31 +141598,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodian", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodianSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodianSiteSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -141899,57 +141637,57 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseCustodianUserSource", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -141964,18 +141702,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHold", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHold", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -141990,122 +141728,122 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseReviewSetQuery", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseReviewSetQuery", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -142120,31 +141858,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseSetting", "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollection", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollection", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -142159,57 +141897,57 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -142224,135 +141962,135 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgComplianceEdiscoveryCaseTagParentByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Compliance", + "Command": "Remove-MgComplianceEdiscoveryCaseTagParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Remove-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContact", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContactManagerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContactManagerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContract", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgContract", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgDevice", "Uri": "/devices/{device-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDevice", "Permissions": [ { "Name": "Device.ReadWrite.All", @@ -142367,18 +142105,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDevice", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDevice", "Permissions": [ { "Name": "Device.ReadWrite.All", @@ -142393,2456 +142131,2456 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", - "Method": "DELETE", - "Module": "Devices.CorporateManagement", - "Permissions": [], "ApiVersion": "v1.0", - "OutputType": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Permissions": [], "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookCategory", "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppInstallSummary", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/installSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppInstallSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppRelationship", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppUserStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtPolicySet", "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtPolicySet", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtPolicySetAssignment", "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtPolicySetAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtPolicySetItem", "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtPolicySetItem", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtSideLoadingKey", "Uri": "/deviceAppManagement/sideLoadingKeys/{sideLoadingKey-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtSideLoadingKey", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtSymantecCodeSigningCertificate", "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtSymantecCodeSigningCertificate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtTask", "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtTask", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceAppMgtWindowManagementAppByRef", "Uri": "/deviceAppManagement/windowsManagementApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgDeviceAppMgtWindowManagementAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgDeviceCommand", "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDeviceCommand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDeviceExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDeviceExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAndroid", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAndroid", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAndroidForWorkSetting", "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAndroidForWorkSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementAssignmentFilter", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementAuditEvent", "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementAuditEvent", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementAutopilotEvent", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAutopilotEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementCartToClassAssociation", "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementCartToClassAssociation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementCategory", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementCategorySettingDefinition", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementCategorySettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceCategory", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceUserFromSharedAppleDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementComanagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceWindowProtectionState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementComanagementEligibleDevice", "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementComanagementEligibleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementCondition", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementCondition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementConditionalAccessSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementConditionalAccessSetting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementConditionStatement", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementConditionStatement", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDataSharingConsent", "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDataSharingConsent", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDerivedCredentials", "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDerivedCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -144863,18 +144601,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -144894,885 +144632,885 @@ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true } - ], - "ApiVersion": "v1.0", - "OutputType": null, + ], "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationConflictSummary", "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationConflictSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationGroupAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStateSummary", "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -145787,18 +145525,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScriptAssignment", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceHealthScriptAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -145813,18 +145551,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -145839,1065 +145577,1065 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceUserFromSharedAppleDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementDeviceHealthScriptRunSummary", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceHealthScriptRunSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceUserFromSharedAppleDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceUserFromSharedAppleDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptGroupAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptUserRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementDomainJoinConnector", "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementDomainJoinConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementExchangeOnPremisPolicy", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementExchangeOnPremisPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyCategory", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyCategoryParentByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyCategoryParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementGroupPolicyConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationAssignment", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionFile", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPresentation", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPresentation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReport", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReport", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyObjectFile", "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyObjectFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/remove", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/removeLanguageFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementImportedDeviceIdentity", "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementImportedDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntent", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentAssignment", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentCategory", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentCategorySetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentCategorySetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentDeviceSettingStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentDeviceState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentDeviceStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentDeviceStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentUserState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentUserState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntentUserStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementIntentUserStateSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementIntuneBrandingProfile", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementIntuneBrandingProfileAssignment", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementIntuneBrandingProfileAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -146918,18 +146656,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -146950,269 +146688,269 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceEncryptionState", "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceEncryptionState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteExpanded1", "DeleteViaIdentity1", "DeleteViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceWindowProtectionState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147227,18 +146965,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147253,18 +146991,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147279,18 +147017,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelSite", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelSite", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147305,18 +147043,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147331,18 +147069,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -147357,2334 +147095,2334 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEvent", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementNdeConnector", "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementNdeConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRemoteActionAudit", "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementRemoteActionAudit", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Reports", + "Command": "Remove-MgDeviceManagementReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Remove-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Reports", + "Command": "Remove-MgDeviceManagementReport", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Remove-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementResourceAccessProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementResourceAccessProfileAssignment", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementResourceAccessProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleScopeTag", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementRoleScopeTagAssignment", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementRoleScopeTagAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptGroupAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptRunSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptUserRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementScriptUserRunStateDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementSettingDefinition", "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementSettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTemplate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTemplateCategory", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTemplateCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTemplateCategoryRecommendedSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTemplateCategoryRecommendedSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTemplateMigratableTo", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTemplateSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTemplateSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionGroupAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionGroupAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete2", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete3", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete4", "DeleteViaIdentity4" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaseline", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaseline", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategory", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticModelScore", "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticModelScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticOverview", "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticOverview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementUserPfxCertificate", "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementUserPfxCertificate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointDeviceImage", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointGalleryImage", "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointGalleryImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointOrganizationSetting", "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointServicePlan", "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointServicePlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointSupportedRegion", "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointSupportedRegion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Administration", + "Command": "Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowAutopilotSetting", "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowAutopilotSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementWindowMalwareInformation", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowMalwareInformation", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement", + "Command": "Remove-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Remove-MgDeviceUsageRights", "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDeviceUsageRights", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -149699,18 +149437,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -149725,31 +149463,31 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryAdministrativeUnitExtension", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryAdministrativeUnitScopedRoleMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryAdministrativeUnitScopedRoleMember", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -149764,57 +149502,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryAttributeSet", "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryAttributeSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinition", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryDeletedItem", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -149847,18 +149585,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryDeletedItem", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -149891,254 +149629,254 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryFeatureRolloutPolicy", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryFeatureRolloutPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryFeatureRolloutPolicyApplyTo", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryFederationConfiguration", "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryFederationConfiguration", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryInboundSharedUserProfile", "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryInboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DirectoryObjects", + "Command": "Remove-MgDirectoryObject", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Remove-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DirectoryObjects", + "Command": "Remove-MgDirectoryObject", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Remove-MgDirectoryOutboundSharedUserProfile", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryOutboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryOutboundSharedUserProfileTenant", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryOutboundSharedUserProfileTenant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRole", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectorySetting", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectorySetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -150153,223 +149891,223 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectorySettingTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDirectorySharedEmailDomain", "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDirectorySharedEmailDomain", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomainSharedEmailDomainInvitation", "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomainSharedEmailDomainInvitation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveBundle", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveBundle", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveFollowing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveFollowing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveItem", "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -150390,18 +150128,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveItem", "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -150422,512 +150160,512 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveSpecial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgDriveSpecial", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClass", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClass", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -150942,18 +150680,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignment", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -150968,100 +150706,100 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentDefault", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151076,18 +150814,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151102,96 +150840,96 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSetting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151206,18 +150944,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionResource", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151232,302 +150970,198 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassGroupByRef", "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationClassGroupByRef", "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationClassGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMe", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMe", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete" - ] - }, - { - "Command": "Remove-MgEducationMeAssignment", - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignment", "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentCategory", "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentResource", "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentRubric", "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentRubric", - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentSubmissionOutcome", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentSubmissionOutcome", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentSubmissionResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentSubmissionResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeAssignmentSubmissionSubmittedResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationMeAssignmentSubmissionSubmittedResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151542,18 +151176,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -151568,2644 +151202,2540 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationMeUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSchool", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSchool", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSchoolAdministrativeUnitByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSchoolAdministrativeUnitByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSynchronizationProfileError", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSynchronizationProfileError", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationSynchronizationProfileStatus", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationSynchronizationProfileStatus", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentCategory", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentCategory", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentRubric", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentRubric", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentSubmissionOutcome", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Delete", - "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentSubmissionOutcome", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] - }, - { - "Command": "Remove-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "DELETE", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentSubmissionSubmittedResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserAssignmentSubmissionSubmittedResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Delete", + "DeleteViaIdentity" + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Education", + "Command": "Remove-MgEducationUserUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Remove-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignment", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStep", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicy", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicy", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageCatalog", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleGroup", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleGroup", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageResourceRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageResourceRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/accessPackageResource/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAccessPackageResourceRoleScope", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAccessPackageResourceRoleScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementCatalog", "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Search", + "Command": "Remove-MgExternalConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Remove-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Search", + "Command": "Remove-MgExternalConnection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Remove-MgFinancialCompany", "Uri": "/financials/companies/{company-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompany", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyAccount", "Uri": "/financials/companies/{company-id}/accounts/{account-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyAgedAccountPayable", "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyAgedAccountPayable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyAgedAccountReceivable", "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyAgedAccountReceivable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCountryRegion", "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCountryRegion", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCurrency", "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCurrency", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomer", "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomer", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerCurrency", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournal", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalAccount", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerPicture", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyDimension", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyDimension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyDimensionValue", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/{dimensionValue-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyDimensionValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyEmployee", "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyEmployee", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyEmployeePicture", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyEmployeePicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyGeneralLedgerEntry", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyGeneralLedgerEntry", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyGeneralLedgerEntryAccount", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyGeneralLedgerEntryAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyInformation", "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyInformation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyItem", "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyItem", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyItemCategory", "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyItemCategory", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyItemPicture", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyJournalAccount", "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyJournalLine", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyJournalLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyJournalLineAccount", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyJournalLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPaymentMethod", "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPaymentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPaymentTerm", "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPaymentTerm", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPicture", "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLine", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItem", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendor", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemo", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomer", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomer", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPicture", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceLine", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceLineItem", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoicePaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoicePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleInvoiceShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleInvoiceShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrder", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomer", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomerPicture", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderLine", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderLineAccount", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderLineItem", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderLineItemCategory", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderLineItemPicture", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleOrderPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleOrderPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomer", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPicture", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteLine", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteLineAccount", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteLineItem", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteLineItemCategory", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteLineItemPicture", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuotePaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuotePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanySaleQuoteShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanySaleQuoteShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyShipmentMethod", "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyShipmentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyTaxArea", "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyTaxArea", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyTaxGroup", "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyTaxGroup", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyUnit", "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyUnit", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyVendor", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyVendor", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyVendorCurrency", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgFinancialCompanyVendorPicture", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Financials", + "Command": "Remove-MgFinancialCompanyVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Remove-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -154220,18 +153750,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -154246,18 +153776,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -154272,18 +153802,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgGroupAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -154298,394 +153828,394 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarPermission", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarPermission", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversation", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversation", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostMention", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgGroupDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgGroupDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgGroupEndpoint", "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEvent", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -154700,18 +154230,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEvent", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -154726,351 +154256,351 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventCalendar", "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventCalendar", "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventExceptionOccurrence", "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupFavorite", "Uri": "/groups/{group-id}/removeFavorite", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Remove-MgGroupFavorite", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupFavorite", "Uri": "/groups/{group-id}/removeFavorite", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Remove-MgGroupFavorite", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove1", "RemoveViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupFromLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Remove-MgGroupFromLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove1", "RemoveExpanded1", "RemoveViaIdentity1", "RemoveViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupFromLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Remove-MgGroupFromLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -155085,18 +154615,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -155111,152 +154641,152 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgGroupSetting", "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupSetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -155271,266 +154801,266 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgGroupSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgGroupSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgGroupTeam", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgGroupTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostMention", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgIdentityConditionalAccessAuthenticationContextClassReference", "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityConditionalAccessAuthenticationContextClassReference", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -155545,18 +155075,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -155571,18 +155101,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -155597,18 +155127,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -155623,302 +155153,302 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInsight", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstance", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgIdentityUserFlow", "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgIdentityUserFlow", "Permissions": { "Name": "IdentityUserFlow.ReadWrite.All", "Description": "Read and write all identity user flows", "FullDescription": "Allows the app to read or write your organization's user flows, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionPolicy", "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionPolicyLabel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionSensitivityPolicySetting", "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionSensitivityPolicySetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -155939,18 +155469,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -155971,83 +155501,81 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgOfficeClientConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgOfficeClientConfigurationAssignment", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments/{officeClientConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgOfficeClientConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgOnPremisePublishingProfile", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileAgentGroup", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", @@ -156055,322 +155583,324 @@ "DeleteViaIdentity", "DeleteViaIdentity1", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileConnector", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileConnector", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileConnectorGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfileConnectorMemberOf", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfileConnectorMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfilePublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfilePublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationBranding", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationBranding", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationSetting", "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationSettingItemInsight", "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationSettingItemInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationSettingPersonInsight", "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationSettingPersonInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgOrganizationSettingProfileCardProperty", "Uri": "/organization/{organization-id}/settings/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgOrganizationSettingProfileCardProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgPlace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgPlace", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156385,18 +155915,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156411,18 +155941,18 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156437,18 +155967,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156463,54 +155993,54 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerRoster", "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerRoster", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerRosterMember", "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerRosterMember", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156525,18 +156055,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -156551,938 +156081,938 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Planner", + "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Remove-MgPolicyAccessReviewPolicy", "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAccessReviewPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAdminConsentRequestPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAdminConsentRequestPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAppManagementPolicy", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAppManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthenticationFlowPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthenticationFlowPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthenticationMethodPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthenticationMethodPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthorizationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthorizationPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyB2CAuthenticationMethodPolicy", "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyB2CAuthenticationMethodPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyDefaultAppManagementPolicy", "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyDefaultAppManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyDirectoryRoleAccessReviewPolicy", "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyDirectoryRoleAccessReviewPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyMobileAppManagementPolicy", "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyMobileAppManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.MobilityManagement", "Description": "Read and write your organization's mobility management policies", "FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyMobileDeviceManagementPolicy", "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyMobileDeviceManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.MobilityManagement", "Description": "Read and write your organization's mobility management policies", "FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyRoleManagementPolicy", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyRoleManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyRoleManagementPolicyAssignment", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyRoleManagementPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyRoleManagementPolicyEffectiveRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyRoleManagementPolicyEffectiveRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyRoleManagementPolicyRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyRoleManagementPolicyRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyServicePrincipalCreationPolicy", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyServicePrincipalCreationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyServicePrincipalCreationPolicyExclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyServicePrincipalCreationPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyServicePrincipalCreationPolicyInclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyServicePrincipalCreationPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintConnector", "Permissions": { "Name": "PrintConnector.ReadWrite.All", "Description": "Read and write print connectors", "FullDescription": "Allows the application to read and write print connectors on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintConnector", "Permissions": { "Name": "PrintConnector.ReadWrite.All", "Description": "Read and write print connectors", "FullDescription": "Allows the application to read and write print connectors on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinter", "Permissions": { "Name": "Printer.FullControl.All", "Description": "Register, read, update, and unregister printers", "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf.  ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinter", "Permissions": { "Name": "Printer.FullControl.All", "Description": "Register, read, update, and unregister printers", "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf.  ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterShare", "Uri": "/print/printerShares/{printerShare-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterShare", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/share/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterShareByRef", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterSharePrinterByRef", "Uri": "/print/printerShares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterSharePrinterByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -157497,18 +157027,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterTaskTrigger", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -157523,654 +157053,667 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintReport", "Uri": "/print/reports", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintService", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintService", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintSharePrinterByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintSharePrinterByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CloudPrint", + "Command": "Remove-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Remove-MgPrivilegedAccess", "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccess", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedAccessResource", "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccessResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedAccessRoleAssignment", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccessRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedAccessRoleAssignmentRequest", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccessRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedAccessRoleDefinition", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccessRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedAccessRoleSetting", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedAccessRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedApproval", "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedApprovalRequestByRef", "Uri": "/privilegedApproval/{privilegedApproval-id}/request/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedApprovalRequestByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedApprovalRoleInfo", "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedApprovalRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedOperationEvent", "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedOperationEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRole", "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleAssignment", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleAssignment", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleAssignmentRequestRoleInfo", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleAssignmentRequestRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleAssignmentRoleInfo", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleAssignmentRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleSetting", "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgPrivilegedRoleSummary", "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgPrivilegedRoleSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgProgram", "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgProgram", "Permissions": { "Name": "ProgramControl.ReadWrite.All", "Description": "Manage programs that you can access", "FullDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgProgramControl", "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgProgramControl", "Permissions": { "Name": "ProgramControl.ReadWrite.All", "Description": "Manage programs that you can access", "FullDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgProgramControlProgram", "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgProgramControlProgram", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Remove-MgProgramControlType", "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.Governance", + "Command": "Remove-MgProgramControlType", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], "OutputType": null, + "Module": "Identity.Governance" + }, + { + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", + "Method": "DELETE", + "Command": "Remove-MgReportAuthenticationMethodUserRegistrationDetail", + "Permissions": [], "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Remove-MgRiskDetection", "Uri": "/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgRiskDetection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgRiskyUser", "Uri": "/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgRiskyUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgRiskyUserHistory", "Uri": "/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgRiskyUserHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgRoleManagementCloudPc", "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcResourceNamespace", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcRoleAssignment", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcRoleAssignment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -158185,121 +157728,121 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcRoleAssignmentAppScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcRoleDefinition", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagement", "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespace", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignment", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -158314,44 +157857,44 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -158378,632 +157921,632 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryResourceNamespace", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespace", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -159018,18 +158561,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -159044,447 +158587,447 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "DeviceManagement.Enrolment", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Remove-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "SchemaExtensions", + "Command": "Remove-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -159499,18 +159042,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "SchemaExtensions" }, { - "Command": "Remove-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "SchemaExtensions", + "Command": "Remove-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -159525,310 +159068,310 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "SchemaExtensions" }, { - "Command": "Remove-MgSearchAcronym", "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Search", + "Command": "Remove-MgSearchAcronym", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Remove-MgSearchBookmark", "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Search", + "Command": "Remove-MgSearchBookmark", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Remove-MgSearchQna", "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Search", + "Command": "Remove-MgSearchQna", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Remove-MgSecurityAction", "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityAlert", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityAlert", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityAttackSimulation", "Uri": "/security/attackSimulation", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityAttackSimulation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityCloudAppSecurityProfile", "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityCloudAppSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityDomainSecurityProfile", "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityDomainSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityFileSecurityProfile", "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityFileSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityHostSecurityProfile", "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityHostSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityIncident", "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityIncident", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityIPSecurityProfile", "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityIPSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityProviderTenantSetting", "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityProviderTenantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecuritySecureScoreControlProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecuritySecureScoreControlProfile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityTiIndicator", "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityTiIndicator", "Permissions": { "Name": "ThreatIndicators.ReadWrite.OwnedBy", "Description": "Manage threat indicators this app creates or owns", "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgSecurityTiIndicatorByExternalId", "Uri": "/security/tiIndicators/deleteTiIndicatorsByExternalId", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Remove-MgSecurityTiIndicatorByExternalId", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResultInfo", "Variants": [ "Delete2", "DeleteExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphResultInfo", + "Module": "Security" }, { - "Command": "Remove-MgSecurityTiIndicatorMultiple", "Uri": "/security/tiIndicators/deleteTiIndicators", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Remove-MgSecurityTiIndicatorMultiple", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResultInfo", "Variants": [ "Delete1", "DeleteExpanded" - ] + ], + "OutputType": "IMicrosoftGraphResultInfo", + "Module": "Security" }, { - "Command": "Remove-MgSecurityUserSecurityProfile", "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Security", + "Command": "Remove-MgSecurityUserSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Remove-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -159843,18 +159386,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -159869,18 +159412,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -159895,18 +159438,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -159921,18 +159464,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -159947,18 +159490,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -159973,93 +159516,93 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", "Permissions": { "Name": "PermissionGrantPolicy.ReadWrite.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalFederatedIdentityCredential", "Uri": "/servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalKey", "Uri": "/servicePrincipals/{servicePrincipal-id}/removeKey", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalKey", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -160080,33 +159623,33 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalLicenseDetail", "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalPassword", "Uri": "/servicePrincipals/{servicePrincipal-id}/removePassword", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalPassword", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -160121,20 +159664,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalPasswordSingleSignOnCredentials", "Uri": "/servicePrincipals/{servicePrincipal-id}/deletePasswordSingleSignOnCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalPasswordSingleSignOnCredentials", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -160161,764 +159704,764 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronization", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationJobSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationJobSchema", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationTemplate", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgSharePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgSharePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgShareSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete3", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -160933,18 +160476,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -160959,44 +160502,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161011,18 +160554,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161037,44 +160580,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161089,18 +160632,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161115,126 +160658,126 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161249,18 +160792,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161275,44 +160818,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161327,18 +160870,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161353,44 +160896,44 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ - "Delete1", - "DeleteViaIdentity1" - ] + "Delete", + "DeleteViaIdentity" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Delete", - "DeleteViaIdentity" - ] + "Delete1", + "DeleteViaIdentity1" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161405,18 +160948,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -161431,314 +160974,327 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItem", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItem", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListSubscription", - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteListSubscription", "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteListSubscription", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", + "Method": "DELETE", + "Command": "Remove-MgSiteListSubscription", + "Permissions": [], "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -161753,18 +161309,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -161779,180 +161335,178 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgSitePage", "Uri": "/sites/{site-id}/pages/{sitePage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSitePage", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStore", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "Delete2", "DeleteViaIdentity1", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroup", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", @@ -161962,291 +161516,291 @@ "DeleteViaIdentity1", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChildRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetParentGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreGroupSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreGroupSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSet", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", @@ -162256,392 +161810,394 @@ "DeleteViaIdentity1", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChildRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetParentGroup", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetParentGroupSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetParentGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTerm", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSiteTermStoreSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSiteTermStoreSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgSubscribedSku", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgSubscribedSku", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "ChangeNotifications", + "Command": "Remove-MgSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "ChangeNotifications" }, { - "Command": "Remove-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "ChangeNotifications", + "Command": "Remove-MgSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "ChangeNotifications" }, { - "Command": "Remove-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSubSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Sites", + "Command": "Remove-MgSubSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Remove-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeam", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannel", "Permissions": [ { "Name": "Channel.Delete.All", @@ -162662,18 +162218,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannel", "Permissions": [ { "Name": "Channel.Delete.All", @@ -162694,116 +162250,116 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelEmail", "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Remove-MgTeamChannelEmail", "Permissions": { "Name": "ChannelSettings.ReadWrite.All", "Description": "Read and write the names, descriptions, and settings of channels", "FullDescription": "Read and write the names, descriptions, and settings of all channels, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelEmail", "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Remove-MgTeamChannelEmail", "Permissions": { "Name": "ChannelSettings.ReadWrite.All", "Description": "Read and write the names, descriptions, and settings of channels", "FullDescription": "Read and write the names, descriptions, and settings of all channels, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove1", "RemoveViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelFileFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelFileFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelMember", "Permissions": { "Name": "ChannelMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from channels, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelMember", "Permissions": { "Name": "ChannelMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from channels, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -162830,18 +162386,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -162868,70 +162424,70 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -162952,18 +162508,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledApp", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -162984,366 +162540,366 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPermissionGrant", "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPhoto", "Uri": "/teams/{team-id}/photo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannel", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelEmail", "Uri": "/teams/{team-id}/primaryChannel/removeEmail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelEmail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelEmail", "Uri": "/teams/{team-id}/primaryChannel/removeEmail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelEmail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove1", "RemoveViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamSchedule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOfferShiftRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOfferShiftRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163358,18 +162914,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOpenShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163384,44 +162940,44 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163436,18 +162992,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleSchedulingGroup", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163462,18 +163018,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163488,18 +163044,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163514,62 +163070,62 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeCard", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163584,18 +163140,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOff", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163610,18 +163166,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163636,18 +163192,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOffReason", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163662,18 +163218,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163688,18 +163244,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamScheduleTimeOffRequest", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -163714,142 +163270,142 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamTag", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamTagMember", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamTagMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgTrustFrameworkKeySet", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgTrustFrameworkKeySet", "Permissions": { "Name": "TrustFrameworkKeySet.ReadWrite.All", "Description": "Read and write trust framework key sets", "FullDescription": "Allows the app to read or write trust framework key sets, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgTrustFrameworkPolicy", "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgTrustFrameworkPolicy", "Permissions": { "Name": "Policy.ReadWrite.TrustFramework", "Description": "Read and write trust framework policies", "FullDescription": "Allows the app to read and write your organization's trust framework policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -163882,18 +163438,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -163926,116 +163482,116 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivity", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivity", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivityHistoryItem", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivityHistoryItem", "Permissions": { "Name": "UserActivity.ReadWrite.CreatedByApp", "Description": "Read and write app activity to your activity feed", "FullDescription": "Allows the app to read and report your activity in the app.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -164050,18 +163606,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Applications", + "Command": "Remove-MgUserAppRoleAssignment", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -164076,18 +163632,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Remove-MgUserAuthenticationEmailMethod", "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationEmailMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164102,18 +163658,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationFido2Method", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164128,18 +163684,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationFido2Method", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164154,54 +163710,54 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMethod", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMethod", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164216,18 +163772,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164242,57 +163798,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationOperation", "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164307,62 +163863,62 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationPasswordMethod", "Uri": "/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationPasswordMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationPhoneMethod", "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationPhoneMethod", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164377,18 +163933,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164403,18 +163959,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164429,18 +163985,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationWindowHello", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -164455,1496 +164011,1496 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendar", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete3", "DeleteViaIdentity", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "Delete2", "DeleteViaIdentity1", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarPermission", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarPermission", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete3", "DeleteViaIdentity", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "Delete2", "DeleteViaIdentity1", "DeleteViaIdentity2" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserChat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "PersonalContacts", + "Command": "Remove-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Remove-MgUserDevice", "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CrossDeviceExperiences", + "Command": "Remove-MgUserDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Remove-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserDeviceEnrollmentConfigurationAssignment", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserDeviceEnrollmentConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserDeviceFromManagement", "Uri": "/users/{user-id}/removeAllDevicesFromManagement", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserDeviceFromManagement", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserDeviceFromManagement", "Uri": "/users/{user-id}/removeAllDevicesFromManagement", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserDeviceFromManagement", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Remove1", "RemoveViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Method": "DELETE", - "Module": "Devices.CorporateManagement", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, + "Method": "DELETE", + "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", + "Permissions": [], "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgUserDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Files", + "Command": "Remove-MgUserDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Remove-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventCalendar", "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventCalendar", "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventExceptionOccurrence", "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Calendar", + "Command": "Remove-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Remove-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserInformationProtection", "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.SignIns", + "Command": "Remove-MgUserInformationProtection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Remove-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/delete", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserInsightSharedLastSharedMethodMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/delete", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserInsightSharedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/delete", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserInsightTrendingResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/delete", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserInsightUsedResourceMicrosoftGraphWorkbookRange", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserJoinedGroup", "Uri": "/users/{user-id}/joinedGroups/{group-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Groups", + "Command": "Remove-MgUserJoinedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Remove-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams/{team-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserJoinedTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageMention", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageMention", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMailFolderUserConfiguration", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMailFolderUserConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -165965,18 +165521,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -165997,494 +165553,494 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceLogCollectionResponse", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceLogCollectionResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceMobileAppConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceSecurityBaselineState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceSecurityBaselineStateSettingState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteExpanded1", "DeleteViaIdentity1", "DeleteViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Remove-MgUserManagedDeviceWindowProtectionState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserManagerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserManagerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageMention", "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageMention", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Mail", + "Command": "Remove-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Remove-MgUserMobileAppIntentAndState", "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserMobileAppIntentAndState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserMobileAppTroubleshootingEvent", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Devices.CorporateManagement", + "Command": "Remove-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Remove-MgUserNotification", "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserNotification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -166499,18 +166055,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenotePage", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -166525,560 +166081,586 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Notes", + "Command": "Remove-MgUserOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Remove-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeetingAttendanceReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Delete2", + "DeleteViaIdentity2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", + "Method": "DELETE", + "Command": "Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeetingRegistration", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Delete2", + "DeleteViaIdentity2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", + "Method": "DELETE", + "Command": "Remove-MgUserOnlineMeetingRegistration", + "Permissions": [], "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeetingRegistrationCustomQuestion", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOnlineMeetingRegistrationRegistrant", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskAttachment", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolder", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroup", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroup", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolder", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserOutlookTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserOutlookTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserPerson", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserPerson", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserPhoto", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete2", "Delete3", "DeleteViaIdentity2", "DeleteViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "CloudCommunications", + "Command": "Remove-MgUserPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Remove-MgUserProfile", "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfile", "Permissions": [ { "Name": "User.ReadWrite", @@ -167093,18 +166675,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileAccount", "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -167119,18 +166701,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileAddress", "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileAddress", "Permissions": [ { "Name": "User.ReadWrite", @@ -167145,18 +166727,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileAnniversary", "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileAnniversary", "Permissions": [ { "Name": "User.ReadWrite", @@ -167171,18 +166753,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileAward", "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileAward", "Permissions": [ { "Name": "User.ReadWrite", @@ -167197,18 +166779,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileCertification", "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileCertification", "Permissions": [ { "Name": "User.ReadWrite", @@ -167223,18 +166805,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileEducationalActivity", "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileEducationalActivity", "Permissions": [ { "Name": "User.ReadWrite", @@ -167249,18 +166831,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileEmail", "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileEmail", "Permissions": [ { "Name": "User.ReadWrite", @@ -167275,18 +166857,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileInterest", "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileInterest", "Permissions": [ { "Name": "User.ReadWrite", @@ -167301,18 +166883,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileLanguage", "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileLanguage", "Permissions": [ { "Name": "User.ReadWrite", @@ -167327,18 +166909,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileName", "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileName", "Permissions": [ { "Name": "User.ReadWrite", @@ -167353,18 +166935,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileNote", "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileNote", "Permissions": [ { "Name": "User.Read", @@ -167397,18 +166979,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfilePatent", "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfilePatent", "Permissions": [ { "Name": "User.ReadWrite", @@ -167423,18 +167005,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfilePhone", "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfilePhone", "Permissions": [ { "Name": "User.ReadWrite", @@ -167449,18 +167031,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfilePosition", "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfilePosition", "Permissions": [ { "Name": "User.ReadWrite", @@ -167475,18 +167057,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileProject", "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileProject", "Permissions": [ { "Name": "User.ReadWrite", @@ -167501,18 +167083,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfilePublication", "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfilePublication", "Permissions": [ { "Name": "User.ReadWrite", @@ -167527,18 +167109,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileSkill", "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileSkill", "Permissions": [ { "Name": "User.ReadWrite", @@ -167553,18 +167135,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileWebAccount", "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileWebAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -167579,18 +167161,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserProfileWebsite", "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserProfileWebsite", "Permissions": [ { "Name": "User.ReadWrite", @@ -167605,174 +167187,174 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Identity.DirectoryManagement", + "Command": "Remove-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Remove-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSetting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSettingItemInsight", "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSettingItemInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSettingRegionalAndLanguageSetting", "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSettingRegionalAndLanguageSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSettingShiftPreference", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserSettingShiftPreference", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserSharedLastSharedMethodInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserSharedLastSharedMethodInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserSharedResourceInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserSharedResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamwork", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamwork", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForUser", @@ -167787,18 +167369,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamworkInstalledApp", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteForUser", @@ -167813,451 +167395,451 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamworkInstalledAppChatByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Teams", + "Command": "Remove-MgUserTeamworkInstalledAppChatByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Remove-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoList", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoList", "Permissions": { "Name": "Tasks.Read", "Description": "Read your tasks and task lists", "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "Users", + "Command": "Remove-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete1", "DeleteViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Remove-MgUserTrendingResourceInsightByRef", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserTrendingResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgUserUsedResourceInsightByRef", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "DELETE", - "Module": "People", + "Command": "Remove-MgUserUsedResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Remove-MgWindowsUpdatesDeployment", "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "WindowsUpdates", + "Command": "Remove-MgWindowsUpdatesDeployment", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Remove-MgWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Method": "DELETE", - "Module": "WindowsUpdates", + "Command": "Remove-MgWindowsUpdatesUpdatableAsset", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Delete", "DeleteViaIdentity" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Remove-MgWindowsUpdatesUpdatableAssetMember", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembers", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Remove-MgWindowsUpdatesUpdatableAssetMember", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Remove-MgWindowsUpdatesUpdatableAssetMemberById", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Remove-MgWindowsUpdatesUpdatableAssetMemberById", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Remove1", "RemoveExpanded1", "RemoveViaIdentity1", "RemoveViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Rename-MgCommunicationCallScreenSharingRole", "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Rename-MgCommunicationCallScreenSharingRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Change1", "ChangeExpanded1", "ChangeViaIdentity1", "ChangeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Rename-MgCommunicationCallScreenSharingRole", "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Rename-MgCommunicationCallScreenSharingRole", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPc", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/rename", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Rename", "RenameExpanded", "RenameViaIdentity", "RenameViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/changeUserAccountType", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementAndroidForWorkSettingSignupUrl", "Uri": "/deviceManagement/androidForWorkSettings/requestSignupUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementAndroidForWorkSettingSignupUrl", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignupUrl", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/requestSignupUrl", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignupUrl", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementComanagedDeviceRemoteAssistance", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementComanagedDeviceRemoteAssistance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceRemoteAssistance", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceRemoteAssistance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceRemoteAssistance", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceRemoteAssistance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -168278,18 +167860,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -168310,18 +167892,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Request1", "RequestViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementMicrosoftTunnelSiteUpgrade", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/requestUpgrade", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementMicrosoftTunnelSiteUpgrade", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -168336,36 +167918,36 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgDeviceManagementScriptDeviceRunStateManagedDeviceRemoteAssistance", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Request-MgDeviceManagementScriptDeviceRunStateManagedDeviceRemoteAssistance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Request-MgUserManagedDeviceRemoteAssistance", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Request-MgUserManagedDeviceRemoteAssistance", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -168386,18 +167968,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Request1", "RequestViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Request-MgUserManagedDeviceRemoteAssistance", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Request-MgUserManagedDeviceRemoteAssistance", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -168418,18 +168000,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Request", "RequestViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Reset-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/resetDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Reset-MgAccessReviewDecision", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -168444,987 +168026,987 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Reset-MgComplianceEdiscoveryCaseSettingToDefault", "Uri": "/compliance/ediscovery/cases/{case-id}/settings/resetToDefault", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Reset-MgComplianceEdiscoveryCaseSettingToDefault", "Permissions": { "Name": "eDiscovery.ReadWrite.All", "Description": "Read and write all eDiscovery objects", "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Reset-MgDeviceManagementComanagedDevicePasscode", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementComanagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevicePasscode", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgDeviceManagementManagedDevicePasscode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgDeviceManagementManagedDevicePasscode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reset1", "ResetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgDeviceManagementScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Reset-MgDeviceManagementScriptDeviceRunStateManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Reset-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/reset", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Reset-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Reset-MgGroupUnseenCount", "Uri": "/groups/{group-id}/resetUnseenCount", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Reset-MgGroupUnseenCount", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Reset-MgGroupUnseenCount", "Uri": "/groups/{group-id}/resetUnseenCount", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Reset-MgGroupUnseenCount", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reset1", "ResetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Reset-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/resetDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Reset-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Reset-MgPrintPrinterDefault", "Uri": "/print/printers/{printer-id}/resetDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Reset-MgPrintPrinterDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Reset-MgPrintPrinterSharePrinterDefault", "Uri": "/print/printerShares/{printerShare-id}/printer/resetDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Reset-MgPrintPrinterSharePrinterDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Reset-MgPrintSharePrinterDefault", "Uri": "/print/shares/{printerShare-id}/printer/resetDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Reset-MgPrintSharePrinterDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Reset-MgUserAuthenticationMethodPassword", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Reset-MgUserAuthenticationMethodPassword", "Permissions": { "Name": "UserAuthenticationMethod.ReadWrite.All", "Description": "Read and write all users' authentication methods", "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "ResetExpanded", "ResetViaIdentity", "ResetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Reset-MgUserManagedDevicePasscode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Reset-MgUserManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset1", "ResetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Reset-MgUserManagedDevicePasscode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Reset-MgUserManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reset", "ResetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Reset-MgUserPendingAccessReviewInstanceDecision", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/resetDecisions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Reset-MgUserPendingAccessReviewInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reset", "Reset1", "ResetViaIdentity", "ResetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Resize-MgDeviceManagementComanagedDeviceCloudPc", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Resize-MgDeviceManagementComanagedDeviceCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Resize-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceCloudPc", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Resize-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Resize-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceCloudPc", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Resize-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Resize-MgDeviceManagementManagedDeviceCloudPc", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Resize-MgDeviceManagementManagedDeviceCloudPc", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Resize-MgDeviceManagementScriptDeviceRunStateManagedDeviceCloudPc", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Resize-MgDeviceManagementScriptDeviceRunStateManagedDeviceCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Resize-MgUserManagedDeviceCloudPc", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Resize-MgUserManagedDeviceCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Restart-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Restart-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restart", "RestartExpanded", "RestartViaIdentity", "RestartViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Restart-MgDeviceManagementComanagedDeviceNow", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementComanagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceNow", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceNow", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceNow", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementManagedDeviceNow", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementManagedDeviceNow", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reboot1", "RebootViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementScriptDeviceRunStateManagedDeviceNow", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementScriptDeviceRunStateManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgDeviceManagementVirtualEndpointCloudPc", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reboot", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restart-MgDeviceManagementVirtualEndpointCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restart-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Restart-MgServicePrincipalSynchronizationJob", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restart", "RestartExpanded", "RestartViaIdentity", "RestartViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Restart-MgUserManagedDeviceNow", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restart-MgUserManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reboot1", "RebootViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Restart-MgUserManagedDeviceNow", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restart-MgUserManagedDeviceNow", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Reboot", "RebootViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Restore-MgAdministrativeUnit", "Uri": "/administrativeUnits/{administrativeUnit-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgAdministrativeUnit", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgApplication", "Uri": "/applications/{application-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Restore-MgApplication", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Restore-MgApplication", "Uri": "/applications/{application-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Restore-MgApplication", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Restore-MgContact", "Uri": "/contacts/{orgContact-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgContact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgContact", "Uri": "/contacts/{orgContact-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgContact", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgContract", "Uri": "/contracts/{contract-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgContract", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgContract", "Uri": "/contracts/{contract-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgContract", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDevice", "Uri": "/devices/{device-id}/restore", - "Method": "POST", - "Module": "Identity.DirectoryManagement", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", + "Method": "POST", + "Command": "Restore-MgDevice", + "Permissions": [], "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDevice", "Uri": "/devices/{device-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDeviceManagementComanagedDevicePasscode", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementComanagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevicePasscode", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDeviceManagementManagedDevicePasscode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDeviceManagementManagedDevicePasscode", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Recover1", "RecoverViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDeviceManagementScriptDeviceRunStateManagedDevicePasscode", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Restore-MgDeviceManagementScriptDeviceRunStateManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Restore-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Restore-MgDirectoryObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Restore-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Restore-MgDirectoryObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "DirectoryObjects" }, { - "Command": "Restore-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDirectoryRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDirectoryRole", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgDirectorySettingTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Restore-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Restore-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Restore-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Restore-MgGroup", "Uri": "/groups/{group-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Restore-MgGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Restore-MgGroup", "Uri": "/groups/{group-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Restore-MgGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Groups" }, { - "Command": "Restore-MgOrganization", "Uri": "/organization/{organization-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgOrganization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgOrganization", "Uri": "/organization/{organization-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Restore-MgOrganization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Identity.DirectoryManagement" }, { - "Command": "Restore-MgPrintPrinterFactoryDefault", "Uri": "/print/printers/{printer-id}/restoreFactoryDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Restore-MgPrintPrinterFactoryDefault", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -169439,18 +169021,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Restore-MgPrintPrinterFactoryDefault", "Uri": "/print/printers/{printer-id}/restoreFactoryDefaults", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Restore-MgPrintPrinterFactoryDefault", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -169465,113 +169047,113 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Restore-MgPrintPrinterSharePrinterFactoryDefault", "Uri": "/print/printerShares/{printerShare-id}/printer/restoreFactoryDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Restore-MgPrintPrinterSharePrinterFactoryDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Restore-MgPrintSharePrinterFactoryDefault", "Uri": "/print/shares/{printerShare-id}/printer/restoreFactoryDefaults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Restore-MgPrintSharePrinterFactoryDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Restore-MgPrintSharePrinterFactoryDefault", "Uri": "/print/shares/{printerShare-id}/printer/restoreFactoryDefaults", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CloudPrint", + "Command": "Restore-MgPrintSharePrinterFactoryDefault", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Restore-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Restore-MgServicePrincipal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Restore-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Restore-MgServicePrincipal", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Applications" }, { - "Command": "Restore-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Restore-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore", "Restore1", "RestoreViaIdentity", "RestoreViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Restore-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Restore-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Restore2", "Restore3", "RestoreViaIdentity2", "RestoreViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Restore-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Restore-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -169592,18 +169174,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Restore-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Restore-MgSiteListItemVersion", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -169624,462 +169206,462 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Restore-MgUser", "Uri": "/users/{user-id}/restore", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restore-MgUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore", "RestoreViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users.Actions" }, { - "Command": "Restore-MgUser", "Uri": "/users/{user-id}/restore", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restore-MgUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", "Variants": [ "Restore1", "RestoreViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDirectoryObject", + "Module": "Users.Actions" }, { - "Command": "Restore-MgUserManagedDevicePasscode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restore-MgUserManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Recover1", "RecoverViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Restore-MgUserManagedDevicePasscode", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Restore-MgUserManagedDevicePasscode", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Recover", "RecoverViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Resume-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/resume", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Resume-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Resume", "ResumeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppDeviceLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/revokeDeviceLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppDeviceLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/revokeAllLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppUserLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/revokeUserLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppDeviceStatusesAppMicrosoftGraphIoVppAppUserLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppDeviceLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/revokeDeviceLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppDeviceLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/revokeAllLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppUserLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/revokeUserLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppMicrosoftGraphIoVppAppUserLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppDeviceLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/revokeDeviceLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppDeviceLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/revokeAllLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppUserLicense", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/revokeUserLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtMobileAppUserStatusesAppMicrosoftGraphIoVppAppUserLicense", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceAppMgtVppTokenLicense", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/revokeLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Revoke-MgDeviceAppMgtVppTokenLicense", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Revoke-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/revokeToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementAndroidForWorkEnrollmentProfileToken", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/revokeToken", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementAndroidForWorkEnrollmentProfileToken", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementComanagedDeviceAppleVppLicense", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementComanagedDeviceAppleVppLicense", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceAppleVppLicense", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceAppleVppLicense", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceAppleVppLicense", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceAppleVppLicense", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementManagedDeviceAppleVppLicense", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementManagedDeviceAppleVppLicense", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgDeviceManagementScriptDeviceRunStateManagedDeviceAppleVppLicense", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Revoke-MgDeviceManagementScriptDeviceRunStateManagedDeviceAppleVppLicense", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Revoke-MgSharePermissionGrant", "Uri": "/shares/{sharedDriveItem-id}/permission/revokeGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Revoke-MgSharePermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Files" }, { - "Command": "Revoke-MgSitePermissionGrant", "Uri": "/sites/{site-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Revoke-MgSitePermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPermission", + "Module": "Sites" }, { - "Command": "Revoke-MgUserManagedDeviceAppleVppLicense", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Revoke-MgUserManagedDeviceAppleVppLicense", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Revoke-MgUserSign", "Uri": "/users/{user-id}/revokeSignInSessions", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Revoke-MgUserSign", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -170100,18 +169682,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Revoke", "RevokeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Revoke-MgUserSign", "Uri": "/users/{user-id}/revokeSignInSessions", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Revoke-MgUserSign", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -170132,57 +169714,57 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Revoke1", "RevokeViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Search-MgDeviceManagementImportedDeviceIdentityExistingIdentity", "Uri": "/deviceManagement/importedDeviceIdentities/searchExistingIdentities", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Search-MgDeviceManagementImportedDeviceIdentityExistingIdentity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", "Variants": [ "Search", "SearchExpanded" - ] + ], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity", + "Module": "DeviceManagement.Actions" }, { - "Command": "Search-MgDrive", "Uri": "/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Search-MgDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", "Variants": [ "Search", "SearchViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem", + "Module": "Files" }, { - "Command": "Search-MgDrive", "Uri": "/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Search-MgDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem1", "Variants": [ "Search1", "SearchViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphDriveItem1", + "Module": "Files" }, { - "Command": "Send-MgAccessReviewReminder", "Uri": "/accessReviews/{accessReview-id}/sendReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Send-MgAccessReviewReminder", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -170197,435 +169779,435 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Send-MgChatActivityNotification", "Uri": "/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Send-MgChatActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send1", "SendExpanded1", "SendViaIdentity1", "SendViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Send-MgChatActivityNotification", "Uri": "/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Send-MgChatActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Send-MgDeviceManagementComanagedDeviceCustomNotificationToCompanyPortal", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Send-MgDeviceManagementComanagedDeviceCustomNotificationToCompanyPortal", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Send-MgDeviceManagementCustomNotificationToCompanyPortal", "Uri": "/deviceManagement/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Send-MgDeviceManagementCustomNotificationToCompanyPortal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Send-MgDeviceManagementManagedDeviceCustomNotificationToCompanyPortal", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Send-MgDeviceManagementManagedDeviceCustomNotificationToCompanyPortal", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send1", "SendViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Send-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/send", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Send-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Send-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/send", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Send-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Send-MgIdentityGovernanceAccessReviewDecisionInstanceReminder", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/sendReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Send-MgIdentityGovernanceAccessReviewDecisionInstanceReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Send-MgTeamActivityNotification", "Uri": "/teams/{team-id}/sendActivityNotification", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Send-MgTeamActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Send-MgTeamActivityNotification", "Uri": "/teams/{team-id}/sendActivityNotification", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Teams", + "Command": "Send-MgTeamActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send1", "SendExpanded1", "SendViaIdentity1", "SendViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Send-MgUserMail", "Uri": "/users/{user-id}/sendMail", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMail", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserMail", "Uri": "/users/{user-id}/sendMail", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMail", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send1", "SendExpanded1", "SendViaIdentity1", "SendViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMailFolderMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send1", "SendViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMailFolderMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserManagedDeviceCustomNotificationToCompanyPortal", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserManagedDeviceCustomNotificationToCompanyPortal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/send", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send1", "SendViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}/send", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserMessage", "Permissions": { "Name": "Mail.Send", "Description": "Send mail as you ", "FullDescription": "Allows the app to send mail as you. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserPendingAccessReviewInstanceDecisionInstanceReminder", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/sendReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserPendingAccessReviewInstanceDecisionInstanceReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserPendingAccessReviewInstanceReminder", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/sendReminder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserPendingAccessReviewInstanceReminder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserTeamworkActivityNotification", "Uri": "/users/{user-id}/teamwork/sendActivityNotification", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserTeamworkActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Send-MgUserTeamworkActivityNotification", "Uri": "/users/{user-id}/teamwork/sendActivityNotification", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Send-MgUserTeamworkActivityNotification", "Permissions": { "Name": "TeamsActivity.Send", "Description": "Send a teamwork activity", "FullDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Send1", "SendExpanded1", "SendViaIdentity1", "SendViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgApplicationConnectorGroupByRef", "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Applications", + "Command": "Set-MgApplicationConnectorGroupByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -170640,1232 +170222,1232 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Applications", + "Command": "Set-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationCreatedOnBehalfOfByRef", "Uri": "/applications/{application-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Applications", + "Command": "Set-MgApplicationCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationLogo", "Uri": "/applications/{application-id}/logo", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Applications", + "Command": "Set-MgApplicationLogo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationLogo", "Uri": "/applications/{application-id}/logo", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Applications", + "Command": "Set-MgApplicationLogo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationVerifiedPublisher", "Uri": "/applications/{application-id}/setVerifiedPublisher", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Set-MgApplicationVerifiedPublisher", "Permissions": { "Name": "Application.ReadWrite.All", "Description": "Read and write applications", "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgApplicationVerifiedPublisher", "Uri": "/applications/{application-id}/setVerifiedPublisher", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Set-MgApplicationVerifiedPublisher", "Permissions": { "Name": "Application.ReadWrite.All", "Description": "Read and write applications", "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Set-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgChatInstalledAppTeamAppByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgChatInstalledAppTeamAppDefinitionByRef", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgChatTabTeamAppByRef", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgChatTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgCommunicationOnlineMeetingAlternativeRecording", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationOnlineMeetingAlternativeRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationOnlineMeetingRecording", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationOnlineMeetingRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}/setPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}/setPresence", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgCommunicationPresenceUserPreferredPresence", "Uri": "/communications/presences/{presence-id}/setUserPreferredPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Set-MgCommunicationPresenceUserPreferredPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseCustodianSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseLegalHoldSiteSourceSiteByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgComplianceEdiscoveryCaseTagParentByRef", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Compliance", + "Command": "Set-MgComplianceEdiscoveryCaseTagParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Set-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.DirectoryManagement", + "Command": "Set-MgContactManagerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Set-MgContactManagerByRef", "Uri": "/contacts/{orgContact-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Identity.DirectoryManagement", + "Command": "Set-MgContactManagerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Set-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtection", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtection", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphTargetedManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphWindowInformationProtection", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphWindowInformationProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphWindowInformationProtection", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedAppPolicyMicrosoftGraphWindowInformationProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppDeviceStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppDeviceStatusesApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppDeviceStatusesAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtWindowManagementAppAsManagedInstaller", "Uri": "/deviceAppManagement/windowsManagementApp/setAsManagedInstaller", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtWindowManagementAppAsManagedInstaller", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceAppMgtWindowManagementAppByRef", "Uri": "/deviceAppManagement/windowsManagementApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgDeviceAppMgtWindowManagementAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingAndroidDeviceOwnerFullyManagedEnrollmentState", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/setAndroidDeviceOwnerFullyManagedEnrollmentState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingAndroidDeviceOwnerFullyManagedEnrollmentState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementAppleUserInitiatedEnrollmentProfilePriority", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/setPriority", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementAppleUserInitiatedEnrollmentProfilePriority", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementComanagedDeviceName", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementComanagedDeviceName", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementCompliancePolicy", "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementCompliancePolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementCompliancePolicyScheduledAction", "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/setScheduledActions", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementCompliancePolicyScheduledAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementConfigurationPolicy", "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementConfigurationPolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile/$ref", - "Method": "PUT", - "Module": "DeviceManagement.Enrolment", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, + "Method": "PUT", + "Command": "Set-MgDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfileByRef", + "Permissions": [], "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementDepOnboardingSettingEnrollmentProfileDefaultProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/setDefaultProfile", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDepOnboardingSettingEnrollmentProfileDefaultProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment1", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceCompliancePolicyScheduledRetireState", "Uri": "/deviceManagement/deviceCompliancePolicies/setScheduledRetireState", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceCompliancePolicyScheduledRetireState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceComplianceScript", "Uri": "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceComplianceScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment1", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfigurationByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementDeviceCustomAttributeShellScript", "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceCustomAttributeShellScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -171880,974 +171462,974 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceName", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceName", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceShellScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceName", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceName", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementDeviceShellScriptRunSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementGroupPolicyCategoryDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementGroupPolicyCategoryParentByRef", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementGroupPolicyCategoryParentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementGroupPolicyConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementGroupPolicyConfigurationDefinitionValueDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementGroupPolicyDefinitionCategoryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/definitionFile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementGroupPolicyDefinitionDefinitionFileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementGroupPolicyDefinitionPresentationDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementIntent", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementIntuneBrandingProfile", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementManagedDeviceName", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementManagedDeviceName", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementManagedDeviceOverviewByRef", "Uri": "/deviceManagement/managedDeviceOverview/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementManagedDeviceOverviewByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementResourceAccessProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementRoleScopeTag", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementScriptDeviceRunStateManagedDeviceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementScriptDeviceRunStateManagedDeviceName", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementScriptDeviceRunStateManagedDeviceName", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementScriptRunSummaryByRef", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementScriptRunSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Uri": "/deviceManagement/softwareUpdateStatusSummary/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementSoftwareUpdateStatusSummaryByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementTermAndConditionAcceptanceStatusesTermAndConditionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Administration", + "Command": "Set-MgDeviceManagementTermAndConditionGroupAssignmentTermAndConditionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement", + "Command": "Set-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetricByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceUserToDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDeviceUserToDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityIntendedDeploymentProfileByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityResourceAccountToDevice", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignResourceAccountToDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityResourceAccountToDevice", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityUserToDevice", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityUserToDevice", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityUserToDevice", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowAutopilotDeviceIdentityUserToDevice", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowDriverUpdateProfile", "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowDriverUpdateProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDeviceManagementWindowQualityUpdateProfile", "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Set-MgDeviceManagementWindowQualityUpdateProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Set-MgDriveBundleContent", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveBundleContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveBundleContent", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveBundleContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveFollowingContent", "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveFollowingContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveFollowingContent", "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveFollowingContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveItemContent", "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveItemContent", "Permissions": [ { "Name": "Files.ReadWrite", @@ -172868,18 +172450,18 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveItemContent", "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveItemContent", "Permissions": [ { "Name": "Files.ReadWrite", @@ -172900,216 +172482,216 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListContentTypeBaseByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListContentTypeColumnSourceColumnByRef", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListItemAnalyticByRef", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListItemDriveItemContent", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveListItemDriveItemContent", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveRootContent", "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveRootContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveRootContent", "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveRootContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveSpecialContent", "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveSpecialContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgDriveSpecialContent", "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgDriveSpecialContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", "Permissions": [ { "Name": "EduAssignments.Read", @@ -173124,18 +172706,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", "Permissions": [ { "Name": "EduAssignments.Read", @@ -173150,18 +172732,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Set-MgEducationClassAssignmentUpResourceFolder", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationClassAssignmentUpResourceFolder", "Permissions": [ { "Name": "EduAssignments.Read", @@ -173176,18 +172758,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Set-MgEducationClassAssignmentUpResourceFolder", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationClassAssignmentUpResourceFolder", "Permissions": [ { "Name": "EduAssignments.Read", @@ -173202,598 +172784,546 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment1", + "Module": "Education" }, { - "Command": "Set-MgEducationClassGroupByRef", "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationClassGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationClassGroupByRef", "Uri": "/education/classes/{educationClass-id}/group/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationClassGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Set", "SetViaIdentity" - ] - }, - { - "Command": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Set1", - "SetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Set-MgEducationMeAssignmentUpResourceFolder", "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Method": "POST", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Set1", - "SetViaIdentity1" - ] - }, - { - "Command": "Set-MgEducationMeAssignmentUpResourceFolder", - "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationMeAssignmentUpResourceFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationAssignment", + "Module": "Education" }, { - "Command": "Set-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationMeUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationMeUserByRef", "Uri": "/education/me/user/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationMeUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationSchoolAdministrativeUnitByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationSchoolAdministrativeUnitByRef", "Uri": "/education/schools/{educationSchool-id}/administrativeUnit/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationSchoolAdministrativeUnitByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Set", "SetViaIdentity" - ] - }, - { - "Command": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Set1", - "SetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Set-MgEducationUserAssignmentUpResourceFolder", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Set-MgEducationUserAssignmentUpResourceFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", "Variants": [ "Set", "SetViaIdentity" - ] - }, - { - "Command": "Set-MgEducationUserAssignmentUpResourceFolder", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationAssignment", - "Variants": [ - "Set1", - "SetViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Set-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationUserUserByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEducationUserUserByRef", "Uri": "/education/users/{educationUser-id}/user/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Education", + "Command": "Set-MgEducationUserUserByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Set-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgEntitlementManagementAccessPackageAccessPackageCatalogByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgEntitlementManagementAccessPackageAssignmentPolicyAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgEntitlementManagementAccessPackageAssignmentRequestAccessPackageByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgEntitlementManagementAccessPackageResourceAccessPackageResourceEnvironmentByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/accessPackageResource/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgEntitlementManagementAccessPackageResourceRequestAccessPackageResourceByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgFinancialCompanyCustomerPaymentCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyCustomerPaymentCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyCustomerPictureContent", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyEmployeePictureContent", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyEmployeePictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyInformationPicture", "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyInformationPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyItemPictureContent", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyPictureContent", "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyPurchaseInvoiceLineItemPictureContent", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyPurchaseInvoiceLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyPurchaseInvoiceVendorPictureContent", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyPurchaseInvoiceVendorPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleCreditMemoCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleCreditMemoCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleCreditMemoLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleCreditMemoLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleInvoiceCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleInvoiceCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleInvoiceLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleInvoiceLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleOrderCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleOrderCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleOrderLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleOrderLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleQuoteCustomerPictureContent", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleQuoteCustomerPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanySaleQuoteLineItemPictureContent", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanySaleQuoteLineItemPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgFinancialCompanyVendorPictureContent", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Financials", + "Command": "Set-MgFinancialCompanyVendorPictureContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Set-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Groups", + "Command": "Set-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Set-MgGroupCreatedOnBehalfOfByRef", "Uri": "/groups/{group-id}/createdOnBehalfOf/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Groups", + "Command": "Set-MgGroupCreatedOnBehalfOfByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Set-MgGroupLicense", "Uri": "/groups/{group-id}/assignLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Set-MgGroupLicense", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -173808,20 +173338,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphGroup", + "Module": "Groups" }, { - "Command": "Set-MgGroupLicense", "Uri": "/groups/{group-id}/assignLicense", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Set-MgGroupLicense", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -173836,1160 +173366,1158 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup1", "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphGroup1", + "Module": "Groups" }, { - "Command": "Set-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupOnenoteResourceContent", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenoteResourceContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupOnenoteResourceContent", "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenoteResourceContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupOnenoteSectionPageContent", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupOnenoteSectionPageContent", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgGroupOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgGroupPhotoContent", "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Groups", + "Command": "Set-MgGroupPhotoContent", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Set-MgGroupPhotoContent", "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Groups", + "Command": "Set-MgGroupPhotoContent", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set2", "Set3", "SetViaIdentity2", "SetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Set-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgIdentityGovernanceAccessReviewDecisionInstanceDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgOfficeClientConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphOfficeClientConfigurationAssignment", + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgOfficeClientConfigurationPolicyPayload", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/policyPayload", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgOfficeClientConfigurationPolicyPayload", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgOfficeClientConfigurationUserPreferencePayload", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/userPreferencePayload", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CorporateManagement", + "Command": "Set-MgOfficeClientConfigurationUserPreferencePayload", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", "Uri": "/organization/{organization-id}/setMobileDeviceManagementAuthority", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", "Uri": "/organization/{organization-id}/setMobileDeviceManagementAuthority", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Set-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.SignIns", + "Command": "Set-MgPolicyRoleManagementPolicyAssignmentPolicyByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Set-MgPrintPrinterShareByRef", "Uri": "/print/printers/{printer-id}/share/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintPrinterShareByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintPrinterSharePrinterByRef", "Uri": "/print/printerShares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintPrinterSharePrinterByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintPrinterTaskTriggerDefinitionByRef", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintPrinterTaskTriggerDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintSharePrinterByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintSharePrinterByRef", "Uri": "/print/shares/{printerShare-id}/printer/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintSharePrinterByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintTaskDefinitionTaskDefinitionByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintTaskDefinitionTaskDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrintTaskDefinitionTaskTriggerByRef", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Devices.CloudPrint", + "Command": "Set-MgPrintTaskDefinitionTaskTriggerByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Set-MgPrivilegedApprovalRequestByRef", "Uri": "/privilegedApproval/{privilegedApproval-id}/request/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.Governance", + "Command": "Set-MgPrivilegedApprovalRequestByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Set-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementCloudPcRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDeviceManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentPrincipalByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsingByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScopeByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipalByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "DeviceManagement.Enrolment", + "Command": "Set-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetScheduleByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Set-MgShareDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareItemContent", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareItemContent", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListContentTypeBaseByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListContentTypeColumnSourceColumnByRef", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -174999,16 +174527,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListItemAnalyticByRef", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set2", "Set3", @@ -175018,416 +174546,416 @@ "SetViaIdentity3", "SetViaIdentityExpanded2", "SetViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListItemDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareListItemDriveItemContent", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set2", "Set3", "SetViaIdentity2", "SetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareRootContent", "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareRootContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgShareRootContent", "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Files", + "Command": "Set-MgShareRootContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Set-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteAnalyticByRef", "Uri": "/sites/{site-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteColumnSourceColumnByRef", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteContentTypeBaseByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ - "Set1", - "SetExpanded1", - "SetViaIdentity1", - "SetViaIdentityExpanded1" - ] + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListContentTypeBaseByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListContentTypeBaseByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ] + "Set1", + "SetExpanded1", + "SetViaIdentity1", + "SetViaIdentityExpanded1" + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListContentTypeColumnSourceColumnByRef", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListContentTypeColumnSourceColumnByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListItemAnalyticByRef", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListItemAnalyticByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListItemDriveItemContent", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListItemDriveItemContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteListItemDriveItemContent", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteListItemDriveItemContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteOnenoteResourceContent", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenoteResourceContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteOnenoteResourceContent", "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenoteResourceContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteOnenoteSectionPageContent", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteOnenoteSectionPageContent", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgSiteOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175437,16 +174965,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175456,16 +174984,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175475,16 +175003,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175494,16 +175022,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175513,16 +175041,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175532,16 +175060,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175551,16 +175079,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175570,16 +175098,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175589,16 +175117,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175608,16 +175136,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreGroupSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreGroupSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175627,16 +175155,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetChildRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetChildRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175646,16 +175174,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetChildRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetChildRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175665,16 +175193,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetChildRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetChildRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175684,16 +175212,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetChildSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetChildSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175703,16 +175231,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175722,16 +175250,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175741,16 +175269,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175760,16 +175288,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetTermRelationFromTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetTermRelationFromTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175779,16 +175307,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetTermRelationSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetTermRelationSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175798,16 +175326,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetTermRelationToTermByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetTermRelationToTermByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175817,16 +175345,16 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgSiteTermStoreSetTermSetByRef", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Sites", + "Command": "Set-MgSiteTermStoreSetTermSetByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "Set1", @@ -175836,528 +175364,530 @@ "SetViaIdentity1", "SetViaIdentityExpanded", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Set-MgTeamChannelFileFolderContent", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamChannelFileFolderContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamChannelFileFolderContent", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamChannelFileFolderContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamGroupByRef", "Uri": "/teams/{team-id}/group/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamGroupByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamInstalledAppTeamAppByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamInstalledAppTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamInstalledAppTeamAppDefinitionByRef", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamInstalledAppTeamAppDefinitionByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamPhotoContent", "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamPhotoContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamPrimaryChannelFileFolderContent", "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamPrimaryChannelFileFolderContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamPrimaryChannelFileFolderContent", "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamPrimaryChannelFileFolderContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamPrimaryChannelTabTeamAppByRef", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamPrimaryChannelTabTeamAppByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTeamTemplateByRef", "Uri": "/teams/{team-id}/template/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgTeamTemplateByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgTrustFrameworkPolicyContent", "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Identity.SignIns", + "Command": "Set-MgTrustFrameworkPolicyContent", "Permissions": { "Name": "Policy.ReadWrite.TrustFramework", "Description": "Read and write trust framework policies", "FullDescription": "Allows the app to read and write your organization's trust framework policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Set-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CrossDeviceExperiences", + "Command": "Set-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Set-MgUserActivityHistoryItemActivityByRef", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "CrossDeviceExperiences", + "Command": "Set-MgUserActivityHistoryItemActivityByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Set-MgUserContactFolderContactPhotoContent", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "PersonalContacts", + "Command": "Set-MgUserContactFolderContactPhotoContent", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Set-MgUserContactFolderContactPhotoContent", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "PersonalContacts", + "Command": "Set-MgUserContactFolderContactPhotoContent", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Set-MgUserContactPhotoContent", "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "PersonalContacts", + "Command": "Set-MgUserContactPhotoContent", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Set-MgUserContactPhotoContent", "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "PersonalContacts", + "Command": "Set-MgUserContactPhotoContent", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Set-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserDeviceEnrollmentConfigurationPriority", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserDeviceEnrollmentConfigurationPriority", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphTargetedManagedAppProtection", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphTargetedManagedAppProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphWindowInformationProtection", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightSharedLastSharedMethodMicrosoftGraphWindowInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightSharedResourceMicrosoftGraphTargetedManagedAppProtection", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightSharedResourceMicrosoftGraphTargetedManagedAppProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightSharedResourceMicrosoftGraphWindowInformationProtection", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightSharedResourceMicrosoftGraphWindowInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightTrendingResourceMicrosoftGraphTargetedManagedAppProtection", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightTrendingResourceMicrosoftGraphTargetedManagedAppProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightTrendingResourceMicrosoftGraphWindowInformationProtection", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightTrendingResourceMicrosoftGraphWindowInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightUsedResourceMicrosoftGraphTargetedManagedAppProtection", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightUsedResourceMicrosoftGraphTargetedManagedAppProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserInsightUsedResourceMicrosoftGraphWindowInformationProtection", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/assign", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserInsightUsedResourceMicrosoftGraphWindowInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserLicense", "Uri": "/users/{user-id}/assignLicense", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserLicense", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -176372,20 +175902,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser1", "Variants": [ "Assign1", "AssignExpanded1", "AssignViaIdentity1", "AssignViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUser1", + "Module": "Users.Actions" }, { - "Command": "Set-MgUserLicense", "Uri": "/users/{user-id}/assignLicense", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserLicense", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -176400,61 +175930,61 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUser", + "Module": "Users.Actions" }, { - "Command": "Set-MgUserMailFolderMessageContent", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Mail", + "Command": "Set-MgUserMailFolderMessageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Set-MgUserMailFolderMessageContent", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Mail", + "Command": "Set-MgUserMailFolderMessageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Set-MgUserManagedDeviceName", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserManagedDeviceName", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Users", + "Command": "Set-MgUserManagerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -176475,20 +176005,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Set-MgUserManagerByRef", "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Users", + "Command": "Set-MgUserManagerByRef", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -176509,762 +176039,762 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Set-MgUserMessageContent", "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Mail", + "Command": "Set-MgUserMessageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Set-MgUserMessageContent", "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Mail", + "Command": "Set-MgUserMessageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Set-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnenoteResourceContent", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenoteResourceContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnenoteResourceContent", "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenoteResourceContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnenoteSectionPageContent", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnenoteSectionPageContent", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Notes", + "Command": "Set-MgUserOnenoteSectionPageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Set-MgUserOnlineMeetingAlternativeRecording", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgUserOnlineMeetingAlternativeRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgUserOnlineMeetingAttendeeReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgUserOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgUserOnlineMeetingAttendeeReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgUserOnlineMeetingAttendeeReport", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgUserOnlineMeetingRecording", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Method": "PUT", - "Module": "CloudCommunications", + "Command": "Set-MgUserOnlineMeetingRecording", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetViaIdentity" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Set-MgUserPhotoContent", "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Users", + "Command": "Set-MgUserPhotoContent", "Permissions": { "Name": "User.ReadWrite", "Description": "Read and update your profile", "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Set-MgUserPhotoContent", "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Users", + "Command": "Set-MgUserPhotoContent", "Permissions": { "Name": "User.ReadWrite", "Description": "Read and update your profile", "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set2", "Set3", "SetViaIdentity2", "SetViaIdentity3" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Set-MgUserPresence", "Uri": "/users/{user-id}/presence/setPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserPresence", "Uri": "/users/{user-id}/presence/setPresence", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserPresenceUserPreferredPresence", "Uri": "/users/{user-id}/presence/setUserPreferredPresence", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Set-MgUserPresenceUserPreferredPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Set-MgUserSharedLastSharedMethodInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "People", + "Command": "Set-MgUserSharedLastSharedMethodInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Set-MgUserSharedResourceInsightByRef", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "People", + "Command": "Set-MgUserSharedResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Set-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "beta", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgUserTeamworkInstalledAppChatByRef", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgUserTeamworkInstalledAppChatByRef", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "Teams", + "Command": "Set-MgUserTeamworkInstalledAppChatByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set1", "SetExpanded1", "SetViaIdentity1", "SetViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Set-MgUserTrendingResourceInsightByRef", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "People", + "Command": "Set-MgUserTrendingResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Set-MgUserUsedResourceInsightByRef", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/$ref", + "ApiVersion": "v1.0", "Method": "PUT", - "Module": "People", + "Command": "Set-MgUserUsedResourceInsightByRef", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Skip-MgDeviceManagementComanagedDeviceActivationLock", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementComanagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceActivationLock", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceActivationLock", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceActivationLock", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Bypass1", "BypassViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgDeviceManagementScriptDeviceRunStateManagedDeviceActivationLock", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Skip-MgDeviceManagementScriptDeviceRunStateManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Skip-MgUserManagedDeviceActivationLock", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Skip-MgUserManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Bypass1", "BypassViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Skip-MgUserManagedDeviceActivationLock", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Skip-MgUserManagedDeviceActivationLock", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Bypass", "BypassViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Start-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Start-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Start-MgCommunicationCallParticipantHoldMusic", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/startHoldMusic", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Start-MgCommunicationCallParticipantHoldMusic", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStartHoldMusicOperation", "Variants": [ "Start1", "StartExpanded1", "StartViaIdentity1", "StartViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphStartHoldMusicOperation", + "Module": "CloudCommunications" }, { - "Command": "Start-MgCommunicationCallParticipantHoldMusic", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/startHoldMusic", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Start-MgCommunicationCallParticipantHoldMusic", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStartHoldMusicOperation", "Variants": [ "Start", "StartExpanded", "StartViaIdentity", "StartViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphStartHoldMusicOperation", + "Module": "CloudCommunications" }, { - "Command": "Start-MgDeviceManagementComanagedDeviceConfigurationManagerAction", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Start-MgDeviceManagementComanagedDeviceConfigurationManagerAction", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Start-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceConfigurationManagerAction", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Start-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceConfigurationManagerAction", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Start-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceConfigurationManagerAction", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Start-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceConfigurationManagerAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Start-MgDeviceManagementManagedDeviceConfigurationManagerAction", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Start-MgDeviceManagementManagedDeviceConfigurationManagerAction", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/runHealthChecks", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Run", "RunViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Start-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/start", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Start-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationFileSynchronizationVerificationMessage", "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationFileSynchronizationVerificationMessage", + "Module": "Education" }, { - "Command": "Start-MgSecurityHuntingQuery", "Uri": "/security/runHuntingQuery", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Start-MgSecurityHuntingQuery", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHuntingQueryResults", "Variants": [ "Run", "RunExpanded" - ] + ], + "OutputType": "IMicrosoftGraphHuntingQueryResults", + "Module": "Security" }, { - "Command": "Start-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Start-MgServicePrincipalSynchronizationJob", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Start-MgTeamScheduleTimeCardBreak", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/startBreak", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Start-MgTeamScheduleTimeCardBreak", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "Start", "StartExpanded", "StartViaIdentity", "StartViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Start-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/start", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Start-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintJobStatus", + "Module": "Users.Actions" }, { - "Command": "Start-MgUserInsightSharedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/start", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Start-MgUserInsightSharedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintJobStatus", + "Module": "Users.Actions" }, { - "Command": "Start-MgUserInsightTrendingResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/start", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Start-MgUserInsightTrendingResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintJobStatus", + "Module": "Users.Actions" }, { - "Command": "Start-MgUserInsightUsedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/start", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Start-MgUserInsightUsedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", "Variants": [ "Start", "StartViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrintJobStatus", + "Module": "Users.Actions" }, { - "Command": "Start-MgUserManagedDeviceConfigurationManagerAction", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Start-MgUserManagedDeviceConfigurationManagerAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgAccessReview", "Uri": "/accessReviews/{accessReview-id}/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgAccessReview", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -177279,31 +176809,31 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Stop-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Stop-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Stop-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "Stop-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -177324,276 +176854,276 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Stop-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "Stop-MgBookingBusinessCalendarView", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Stop-MgCommunicationCallMediaProcessing", "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Stop-MgCommunicationCallMediaProcessing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", + "Module": "CloudCommunications" }, { - "Command": "Stop-MgCommunicationCallMediaProcessing", "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Stop-MgCommunicationCallMediaProcessing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", "Variants": [ "Cancel1", "CancelExpanded1", "CancelViaIdentity1", "CancelViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", + "Module": "CloudCommunications" }, { - "Command": "Stop-MgCommunicationCallParticipantHoldMusic", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/stopHoldMusic", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Stop-MgCommunicationCallParticipantHoldMusic", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStopHoldMusicOperation", "Variants": [ "Stop1", "StopExpanded1", "StopViaIdentity1", "StopViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphStopHoldMusicOperation", + "Module": "CloudCommunications" }, { - "Command": "Stop-MgCommunicationCallParticipantHoldMusic", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/stopHoldMusic", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Stop-MgCommunicationCallParticipantHoldMusic", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStopHoldMusicOperation", "Variants": [ "Stop", "StopExpanded", "StopViaIdentity", "StopViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphStopHoldMusicOperation", + "Module": "CloudCommunications" }, { - "Command": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/endGracePeriod", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "End", "EndViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Stop-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Stop-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Stop-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Stop-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Stop-MgFinancialCompanySaleInvoiceAndSend", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancelAndSend", + "ApiVersion": "beta", "Method": "POST", - "Module": "Financials", + "Command": "Stop-MgFinancialCompanySaleInvoiceAndSend", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Stop-MgGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Stop-MgGroupCalendarEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Stop-MgGroupCalendarEvent", "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Stop-MgGroupCalendarEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel1", "CancelExpanded1", "CancelViaIdentity1", "CancelViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Stop-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Stop-MgGroupEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel1", "CancelExpanded1", "CancelViaIdentity1", "CancelViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Stop-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Stop-MgGroupEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Stop-MgIdentityGovernanceAccessReviewDecisionInstance", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgIdentityGovernanceAccessReviewDecisionInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Stop-MgIdentityGovernanceAccessReviewDecisionInstanceDefinition", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgIdentityGovernanceAccessReviewDecisionInstanceDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Stop-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Stop-MgPrivilegedRoleAssignmentRequest", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -177608,18 +177138,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", + "Module": "Identity.Governance" }, { - "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [ { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", @@ -177634,18 +177164,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [ { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", @@ -177660,251 +177190,251 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Enrolment", + "Command": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Stop-MgSecurityAction", "Uri": "/security/securityActions/{securityAction-id}/cancelSecurityAction", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Stop-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Stop-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Stop-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Stop-MgTeamScheduleTimeCardBreak", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/endBreak", + "ApiVersion": "beta", "Method": "POST", - "Module": "Teams", + "Command": "Stop-MgTeamScheduleTimeCardBreak", "Permissions": { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", "Variants": [ "End", "EndExpanded", "EndViaIdentity", "EndViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTimeCard", + "Module": "Teams" }, { - "Command": "Stop-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel1", "CancelExpanded1", "CancelViaIdentity1", "CancelViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel1", "CancelExpanded1", "CancelViaIdentity1", "CancelViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserInsightSharedLastSharedMethodMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserInsightSharedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserInsightSharedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserInsightTrendingResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserInsightTrendingResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserInsightUsedResourceMicrosoftGraphPrintJob", "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource/cancel", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserInsightUsedResourceMicrosoftGraphPrintJob", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Cancel", "CancelViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserPendingAccessReviewInstance", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserPendingAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserPendingAccessReviewInstanceDecisionInstance", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserPendingAccessReviewInstanceDecisionInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Stop-MgUserPendingAccessReviewInstanceDefinition", "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/definition/stop", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Stop-MgUserPendingAccessReviewInstanceDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Stop", "StopViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Submit-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Submit-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -177919,18 +177449,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Submit1", "SubmitViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission", + "Module": "Education" }, { - "Command": "Submit-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Education", + "Command": "Submit-MgEducationClassAssignmentSubmission", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -177945,789 +177475,763 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Submit", "SubmitViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphEducationSubmission1", + "Module": "Education" }, { - "Command": "Submit-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Submit-MgEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Submit", "SubmitViaIdentity" - ] - }, - { - "Command": "Submit-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Submit1", - "SubmitViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Submit-MgEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Submit-MgEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", "Variants": [ "Submit", "SubmitViaIdentity" - ] - }, - { - "Command": "Submit-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Method": "POST", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": "IMicrosoftGraphEducationSubmission", - "Variants": [ - "Submit1", - "SubmitViaIdentity1" - ] + "Module": "Education" }, { - "Command": "Submit-MgSecurityTiIndicator", "Uri": "/security/tiIndicators/submitTiIndicators", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Submit-MgSecurityTiIndicator", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", "Variants": [ "Submit", "SubmitExpanded" - ] + ], + "OutputType": "IMicrosoftGraphTiIndicator", + "Module": "Security" }, { - "Command": "Suspend-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Suspend-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Pause", "PauseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Suspend-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/pause", + "ApiVersion": "beta", "Method": "POST", - "Module": "Education", + "Command": "Suspend-MgEducationSynchronizationProfile", "Permissions": { "Name": "EduAdministration.ReadWrite", "Description": "Manage your education app settings", "FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Pause", "PauseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Suspend-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Suspend-MgServicePrincipalSynchronizationJob", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Pause", "PauseViaIdentity" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Sync-MgDeviceAppMgtMicrosoftStore", "Uri": "/deviceAppManagement/syncMicrosoftStoreForBusinessApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Sync-MgDeviceAppMgtMicrosoftStore", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Sync-MgDeviceAppMgtMicrosoftStore", "Uri": "/deviceAppManagement/syncMicrosoftStoreForBusinessApps", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Sync-MgDeviceAppMgtMicrosoftStore", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Sync1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Sync-MgDeviceAppMgtVppTokenLicense", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Sync-MgDeviceAppMgtVppTokenLicense", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": "IMicrosoftGraphVppToken", + "Module": "Devices.CorporateManagement" }, { - "Command": "Sync-MgDeviceAppMgtVppTokenLicense", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Sync-MgDeviceAppMgtVppTokenLicense", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken1", "Variants": [ "Sync1", "SyncViaIdentity1" - ] + ], + "OutputType": "IMicrosoftGraphVppToken1", + "Module": "Devices.CorporateManagement" }, { - "Command": "Sync-MgDeviceAppMgtVppTokenLicenseCount", "Uri": "/deviceAppManagement/vppTokens/syncLicenseCounts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Sync-MgDeviceAppMgtVppTokenLicenseCount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Sync-MgDeviceManagementAndroidForWorkSettingApp", "Uri": "/deviceManagement/androidForWorkSettings/syncApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementAndroidForWorkSettingApp", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/syncApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementComanagedDevice", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementComanagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/syncWithAppleDeviceEnrollmentProgram", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/sync", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncExpanded", "SyncViaIdentity", "SyncViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/sync", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Sync1", "SyncExpanded1", "SyncViaIdentity1", "SyncViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Sync1", "SyncViaIdentity1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementWindowAutopilotSetting", "Uri": "/deviceManagement/windowsAutopilotSettings/sync", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementWindowAutopilotSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgDeviceManagementWindowDriverUpdateProfileInventory", "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/syncInventory", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Sync-MgDeviceManagementWindowDriverUpdateProfileInventory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Sync-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Sync-MgUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Sync1", "SyncViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Sync-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Sync-MgUserManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Sync", "SyncViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Test-MgAdministrativeUnitProperty", "Uri": "/administrativeUnits/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgAdministrativeUnitProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgApplicationProperty", "Uri": "/applications/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgApplicationProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgApplicationProperty", "Uri": "/applications/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgApplicationProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgApplicationSynchronizationJobCredentials", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgApplicationSynchronizationJobCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgContactProperty", "Uri": "/contacts/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgContactProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgContactProperty", "Uri": "/contacts/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgContactProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgContractProperty", "Uri": "/contracts/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgContractProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgContractProperty", "Uri": "/contracts/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgContractProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDeviceAppMgtMobileAppXml", "Uri": "/deviceAppManagement/mobileApps/validateXml", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Test-MgDeviceAppMgtMobileAppXml", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Test-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters/validateFilter", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Test-MgDeviceManagementAssignmentFilter", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Test-MgDeviceManagementDeviceCompliancePolicyComplianceScript", "Uri": "/deviceManagement/deviceCompliancePolicies/validateComplianceScript", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Test-MgDeviceManagementDeviceCompliancePolicyComplianceScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScriptValidationResult", "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDeviceComplianceScriptValidationResult", + "Module": "DeviceManagement.Actions" }, { - "Command": "Test-MgDeviceProperty", "Uri": "/devices/validateProperties", - "Method": "POST", - "Module": "Identity.DirectoryManagement", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, + "Method": "POST", + "Command": "Test-MgDeviceProperty", + "Permissions": [], "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDeviceProperty", "Uri": "/devices/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDeviceProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDirectoryObjectProperty", "Uri": "/directoryObjects/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Test-MgDirectoryObjectProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Test-MgDirectoryObjectProperty", "Uri": "/directoryObjects/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DirectoryObjects", + "Command": "Test-MgDirectoryObjectProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Test-MgDirectoryRoleProperty", "Uri": "/directoryRoles/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDirectoryRoleProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDirectoryRoleProperty", "Uri": "/directoryRoles/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDirectoryRoleProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDirectoryRoleTemplateProperty", "Uri": "/directoryRoleTemplates/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDirectoryRoleTemplateProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDirectoryRoleTemplateProperty", "Uri": "/directoryRoleTemplates/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDirectoryRoleTemplateProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDirectorySettingTemplateProperty", "Uri": "/directorySettingTemplates/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgDirectorySettingTemplateProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgDriveListContentTypeBasePublished", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Test-MgDriveListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgDriveListContentTypeBasePublished", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Test-MgDriveListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgDriveListContentTypePublished", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Test-MgDriveListContentTypePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgDriveListContentTypePublished", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Test-MgDriveListContentTypePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgGroupDynamicMembership", "Uri": "/groups/{group-id}/evaluateDynamicMembership", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Test-MgGroupDynamicMembership", "Permissions": [ { "Name": "Device.Read.All", @@ -178754,20 +178258,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult", + "Module": "Groups" }, { - "Command": "Test-MgGroupProperty", "Uri": "/groups/{group-id}/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Test-MgGroupProperty", "Permissions": [ { "Name": "Group.Read.All", @@ -178782,20 +178286,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Test-MgGroupProperty", "Uri": "/groups/{group-id}/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Test-MgGroupProperty", "Permissions": [ { "Name": "Group.Read.All", @@ -178810,310 +178314,310 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate2", "ValidateExpanded2", "ValidateViaIdentity1", "ValidateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Test-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies/evaluate", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Test-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", "Variants": [ "Evaluate", "EvaluateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", + "Module": "Identity.SignIns" }, { - "Command": "Test-MgInformationProtectionPolicyLabelApplication", "Uri": "/informationProtection/policy/labels/evaluateApplication", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Test-MgInformationProtectionPolicyLabelApplication", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", "Variants": [ "Evaluate", "EvaluateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionAction", + "Module": "Identity.SignIns" }, { - "Command": "Test-MgInformationProtectionPolicyLabelClassificationResult", "Uri": "/informationProtection/policy/labels/evaluateClassificationResults", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Test-MgInformationProtectionPolicyLabelClassificationResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", "Variants": [ "Evaluate", "EvaluateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionAction", + "Module": "Identity.SignIns" }, { - "Command": "Test-MgInformationProtectionPolicyLabelRemoval", "Uri": "/informationProtection/policy/labels/evaluateRemoval", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.SignIns", + "Command": "Test-MgInformationProtectionPolicyLabelRemoval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", "Variants": [ "Evaluate", "EvaluateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphInformationProtectionAction", + "Module": "Identity.SignIns" }, { - "Command": "Test-MgOrganizationProperty", "Uri": "/organization/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgOrganizationProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgOrganizationProperty", "Uri": "/organization/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Identity.DirectoryManagement", + "Command": "Test-MgOrganizationProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Test-MgServicePrincipalProperty", "Uri": "/servicePrincipals/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgServicePrincipalProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgServicePrincipalProperty", "Uri": "/servicePrincipals/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgServicePrincipalProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgServicePrincipalSynchronizationJobCredentials", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Test-MgServicePrincipalSynchronizationJobCredentials", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Test-MgShareListContentTypeBasePublished", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Test-MgShareListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgShareListContentTypeBasePublished", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Test-MgShareListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgShareListContentTypePublished", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Files", + "Command": "Test-MgShareListContentTypePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgShareListContentTypePublished", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Files", + "Command": "Test-MgShareListContentTypePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Test-MgSiteContentTypeBasePublished", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteContentTypeBasePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteContentTypeBasePublished", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteContentTypeBasePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteContentTypePublished", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteContentTypePublished", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteContentTypePublished", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteContentTypePublished", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteListContentTypeBasePublished", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteListContentTypeBasePublished", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteListContentTypeBasePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteListContentTypePublished", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteListContentTypePublished", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgSiteListContentTypePublished", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Method": "GET", - "Module": "Sites", + "Command": "Test-MgSiteListContentTypePublished", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Is1", "IsViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Test-MgUserManagedAppUserBlocked", "Uri": "/users/{user-id}/isManagedAppUserBlocked", + "ApiVersion": "beta", "Method": "GET", - "Module": "Users.Functions", + "Command": "Test-MgUserManagedAppUserBlocked", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -179128,311 +178632,311 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Is", "IsViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Functions" }, { - "Command": "Test-MgUserPassword", "Uri": "/users/validatePassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Test-MgUserPassword", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordValidationInformation", "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": "IMicrosoftGraphPasswordValidationInformation", + "Module": "Users.Actions" }, { - "Command": "Test-MgUserProperty", "Uri": "/users/validateProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Test-MgUserProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Validate", "ValidateExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Test-MgUserProperty", "Uri": "/users/validateProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Test-MgUserProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Validate1", "ValidateExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Unblock-MgUserManagedApp", "Uri": "/users/{user-id}/unblockManagedApps", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Unblock-MgUserManagedApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unblock", "UnblockViaIdentity" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Unpublish-MgBookingBusiness", "Uri": "/bookingBusinesses/{bookingBusiness-id}/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Bookings", + "Command": "Unpublish-MgBookingBusiness", "Permissions": { "Name": "Bookings.Manage.All", "Description": "Manage bookings information", "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Unpublish-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgDriveListContentTypeBase", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgDriveListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgShareListContentTypeBase", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Files", + "Command": "Unpublish-MgShareListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Unpublish-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteContentType", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteContentType", "Permissions": { "Name": "Sites.FullControl.All", "Description": "Have full control of all your site collections", "FullDescription": "Allow the application to have full control of all site collections on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteContentTypeBase", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Unpublish", "UnpublishViaIdentity" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Unpublish-MgSiteListContentTypeBase", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/unpublish", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Unpublish-MgSiteListContentTypeBase", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Unpublish1", "UnpublishViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgAccessReview", "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAccessReview", "Permissions": [ { "Name": "AccessReview.ReadWrite.All", @@ -179447,80 +178951,80 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAccessReviewDecision", "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAccessReviewInstance", "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAccessReviewInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAccessReviewMyDecision", "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAccessReviewMyDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAccessReviewReviewer", "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAccessReviewReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAdministrativeUnit", "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -179535,380 +179039,380 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgAdministrativeUnitExtension", "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgAdministrativeUnitScopedRoleMember", "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgAdministrativeUnitScopedRoleMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreement", "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementAcceptance", "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementAcceptance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFile", "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFile", "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFile", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileLocalization", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileLocalization", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileLocalizationVersion", "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileLocalizationVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAgreementFileVersion", "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgAgreementFileVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamApp", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinition", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionBot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionBot", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionBot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionColorIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionColorIcon", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionColorIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionOutlineIcon", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionOutlineIcon", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgAppCatalogTeamAppDefinitionOutlineIconHostedContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -179923,20 +179427,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplication", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplication", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -179951,205 +179455,205 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationExtensionProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationExtensionProperty", "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationExtensionProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationFederatedIdentityCredential", "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronization", "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationJob", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationJobSchema", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationJobSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationJobSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationTemplate", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationTemplate", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationTemplateSchema", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationTemplateSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationSynchronizationTemplateSchemaDirectory", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgApplicationTemplate", "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgApplicationTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgBookingBusiness", "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusiness", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -180164,20 +179668,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingBusinessAppointment", "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusinessAppointment", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -180198,35 +179702,35 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingBusinessCalendarView", "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusinessCalendarView", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingBusinessCustomer", "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusinessCustomer", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -180247,20 +179751,35 @@ "IsAdmin": false } ], - "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], "OutputType": null, + "Module": "Bookings" + }, + { + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", + "Method": "PATCH", + "Command": "Update-MgBookingBusinessCustomQuestion", + "Permissions": [], "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingBusinessService", "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusinessService", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -180275,20 +179794,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingBusinessStaffMember", "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingBusinessStaffMember", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -180303,93 +179822,91 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBookingCurrency", "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Bookings", + "Command": "Update-MgBookingCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Bookings" }, { - "Command": "Update-MgBusinessFlowTemplate", "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgBusinessFlowTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChat", "Permissions": { "Name": "Chat.ReadWrite", "Description": "Read and write your chat messages", "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChat", "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChat", "Permissions": { "Name": "Chat.ReadWrite", "Description": "Read and write your chat messages", "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatInstalledApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", @@ -180397,16 +179914,16 @@ "UpdateViaIdentityExpanded1", "Upgrade1", "UpgradeViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatInstalledApp", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatInstalledApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", @@ -180414,148 +179931,150 @@ "UpdateViaIdentityExpanded", "Upgrade", "UpgradeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatLastMessagePreview", "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatLastMessagePreview", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMember", "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMessage", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMessage", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatMessageReply", "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatOperation", "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatPermissionGrant", "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatTab", "Permissions": [ { "Name": "TeamsTab.ReadWrite.All", @@ -180570,20 +180089,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgChatTab", "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgChatTab", "Permissions": [ { "Name": "TeamsTab.ReadWrite.All", @@ -180598,352 +180117,382 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallAudioRoutingGroup", "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallAudioRoutingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallOperation", "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallParticipant", "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallParticipant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallRecordingStatus", "Uri": "/communications/calls/{call-id}/updateRecordingStatus", + "ApiVersion": "beta", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallRecordingStatus", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallRecordingStatus", "Uri": "/communications/calls/{call-id}/updateRecordingStatus", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallRecordingStatus", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationCallRecordSession", "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationCallRecordSession", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeeting", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeeting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeetingAttendanceReport", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Update1", + "Update2", + "UpdateExpanded1", + "UpdateExpanded2", + "UpdateViaIdentity1", + "UpdateViaIdentity2", + "UpdateViaIdentityExpanded1", + "UpdateViaIdentityExpanded2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", + "Method": "PATCH", + "Command": "Update-MgCommunicationOnlineMeetingAttendanceReport", + "Permissions": [], "Variants": [ "Update", - "Update1", "UpdateExpanded", - "UpdateExpanded1", "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded", - "UpdateViaIdentityExpanded1" - ] + "UpdateViaIdentityExpanded" + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Update1", + "Update2", + "UpdateExpanded1", + "UpdateExpanded2", + "UpdateViaIdentity1", + "UpdateViaIdentity2", + "UpdateViaIdentityExpanded1", + "UpdateViaIdentityExpanded2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", + "Method": "PATCH", + "Command": "Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Update", - "Update1", "UpdateExpanded", - "UpdateExpanded1", "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded", - "UpdateViaIdentityExpanded1" - ] + "UpdateViaIdentityExpanded" + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeetingRegistration", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeetingRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationOnlineMeetingRegistrationRegistrant", "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCommunicationPresence", "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgCommunicationPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgCompliance", "Uri": "/compliance", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgCompliance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgCompliance", "Uri": "/compliance", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgCompliance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscovery", "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscovery", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCase", "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCase", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -180958,20 +180507,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseCustodian", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseCustodian", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -180986,78 +180535,78 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseCustodianIndex", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/updateIndex", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseCustodianIndex", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseCustodianSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseCustodianSiteSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseCustodianUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseCustodianUserSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseLegalHold", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseLegalHold", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -181072,123 +180621,123 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldSiteSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseLegalHoldUserSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseNoncustodialDataSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseNoncustodialDataSourceIndex", "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/updateIndex", + "ApiVersion": "beta", "Method": "POST", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseNoncustodialDataSourceIndex", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseOperation", "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseReviewSet", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseReviewSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseReviewSetQuery", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseReviewSetQuery", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -181203,40 +180752,40 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseSetting", "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseSetting", "Permissions": { "Name": "eDiscovery.ReadWrite.All", "Description": "Read and write all eDiscovery objects", "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseSourceCollection", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseSourceCollection", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -181251,35 +180800,35 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgComplianceEdiscoveryCaseTag", "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Compliance", + "Command": "Update-MgComplianceEdiscoveryCaseTag", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -181294,110 +180843,110 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Compliance" }, { - "Command": "Update-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgContact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgContact", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgContact", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgContract", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgContract", "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgContract", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgDataPolicyOperation", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgDataPolicyOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgDevice", "Uri": "/devices/{device-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDevice", "Permissions": [ { "Name": "Device.ReadWrite.All", @@ -181418,20 +180967,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDevice", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDevice", "Permissions": [ { "Name": "Device.ReadWrite.All", @@ -181452,20 +181001,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDeviceAppMgt", "Uri": "/deviceAppManagement", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgt", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -181480,18 +181029,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgt", "Uri": "/deviceAppManagement", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgt", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -181506,2061 +181055,2061 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtection", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtection", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtEnterpriseCodeSigningCertificate", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtection", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtection", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionApp", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppPolicy", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistration", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistration", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppRegistrationOperation", "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppRegistrationOperation", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedAppStatuses", "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedAppStatuses", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBook", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBook", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookAssignment", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookCategory", "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookInstallSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookInstallSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummary", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileApp", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppAssignment", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppCategory", "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppCategory", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfiguration", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationAssignment", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppDeviceStatusesAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/updateRelationships", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppDeviceStatusesAppRelationship", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppInstallSummary", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/installSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppInstallSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppRelationship", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppUserStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppUserStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/updateRelationships", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesAppRelationship", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/updateRelationships", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMobileAppUserStatusesDeviceStatusesAppRelationship", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMultipleMobileAppRelationship", "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/updateRelationships", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMultipleMobileAppRelationship", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtMultiplePolicySet", "Uri": "/deviceAppManagement/policySets/{policySet-id}/update", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtMultiplePolicySet", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtPolicySet", "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtPolicySet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtPolicySetAssignment", "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtPolicySetAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtPolicySetItem", "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtPolicySetItem", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtSideLoadingKey", "Uri": "/deviceAppManagement/sideLoadingKeys/{sideLoadingKey-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtSideLoadingKey", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtSymantecCodeSigningCertificate", "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtSymantecCodeSigningCertificate", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfiguration", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfiguration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationApp", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTask", "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTask", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtTaskStatus", "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}/updateStatus", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtTaskStatus", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtVppToken", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtVppToken", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicy", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyDeploySummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWdacSupplementalPolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWindowInformationProtectionPolicy", "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWindowInformationProtectionPolicy", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgDeviceAppMgtWindowInformationProtectionWipeAction", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgDeviceCommand", "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDeviceCommand", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDeviceExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDeviceExtension", "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDeviceExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDeviceManagement", "Uri": "/deviceManagement", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -183593,18 +183142,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagement", "Uri": "/deviceManagement", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -183637,172 +183186,172 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAndroid", "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAndroid", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAndroidDeviceOwnerEnrollmentProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAndroidForWorkAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAndroidForWorkSetting", "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAndroidForWorkSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAndroidManagedStoreAppConfigurationSchema", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -183817,18 +183366,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -183843,599 +183392,599 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAppleUserInitiatedEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementAssignmentFilter", "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementAssignmentFilter", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementAuditEvent", "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementAuditEvent", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementAutopilotEvent", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAutopilotEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementAutopilotEventPolicyStatusDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementCartToClassAssociation", "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementCartToClassAssociation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementCategory", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementCategorySettingDefinition", "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementCategorySettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceCategory", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceWindowProtectionState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementComanagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementComanagementEligibleDevice", "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementComanagementEligibleDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementComplianceManagementPartner", "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementComplianceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementCondition", "Uri": "/deviceManagement/managementConditions/{managementCondition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementCondition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementConditionalAccessSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementConditionalAccessSetting", "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementConditionalAccessSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementConditionStatement", "Uri": "/deviceManagement/managementConditionStatements/{managementConditionStatement-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementConditionStatement", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDataSharingConsent", "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDataSharingConsent", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDepOnboardingSetting", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDepOnboardingSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDepOnboardingSettingEnrollmentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDepOnboardingSettingEnrollmentProfileDeviceProfileAssignment", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/updateDeviceProfileAssignment", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDepOnboardingSettingEnrollmentProfileDeviceProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDerivedCredentials", "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDerivedCredentials", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -184456,20 +184005,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDetectedApp", "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDetectedApp", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -184490,1042 +184039,1042 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCategory", "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceComplianceReportSummarization", "Uri": "/deviceManagement/deviceCompliancePolicies/refreshDeviceComplianceReportSummarization", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceComplianceReportSummarization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Refresh" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledAction", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfiguration", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationConflictSummary", "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationConflictSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationGroupAssignment", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationGroupAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementDeviceConfigurationManagedDeviceCertificateState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementDeviceConfigurationRestrictedAppViolation", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStateSummary", "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatuses", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScript", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceHealthScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -185540,20 +185089,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptAssignment", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceHealthScriptAssignment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -185568,20 +185117,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunState", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -185596,58 +185145,58 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDeviceAccount", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceHealthScriptDeviceRunStateManagedDeviceWindowDeviceAccount", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptGlobalScript", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/updateGlobalScript", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceHealthScriptGlobalScript", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -185662,20 +185211,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceHealthScriptRunSummary", "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceHealthScriptRunSummary", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -185690,291 +185239,289 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScript", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScript", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateViaIdentity" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDeviceAccount", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementDeviceShellScriptDeviceRunStateManagedDeviceWindowDeviceAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptGroupAssignment", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptUserRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementDomainJoinConnector", "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementDomainJoinConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePool", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePool", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePoolAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementEmbeddedSimActivationCodePoolDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementExchangeConnector", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementExchangeConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementExchangeOnPremisPolicy", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementExchangeOnPremisPolicy", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -185982,16 +185529,16 @@ "UpdateExpanded1", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementExchangeOnPremisPolicyConditionalAccessSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -185999,763 +185546,765 @@ "UpdateExpanded1", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyCategory", "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyConfiguration", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementGroupPolicyConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementGroupPolicyConfigurationAssignment", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementGroupPolicyConfigurationAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementGroupPolicyConfigurationDefinitionValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementGroupPolicyConfigurationMultipleDefinitionValue", "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/updateDefinitionValues", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementGroupPolicyConfigurationMultipleDefinitionValue", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementGroupPolicyDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyDefinitionFile", "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyDefinitionFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyDefinitionNextVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyDefinitionPresentation", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyDefinitionPresentation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyMigrationReport", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyMigrationReport", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyObjectFile", "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyObjectFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/updateLanguageFiles", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementImportedDeviceIdentity", "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementImportedDeviceIdentity", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementImportedWindowAutopilotDeviceIdentity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementIntent", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntent", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentAssignment", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentCategory", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentCategorySetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentCategorySetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentDeviceSettingStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentDeviceSettingStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentDeviceState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentDeviceState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentDeviceStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentDeviceStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentMultipleSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/updateSettings", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementIntentMultipleSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementIntentSetting", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentUserState", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentUserState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntentUserStateSummary", "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementIntentUserStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementIntuneBrandingProfile", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementIntuneBrandingProfile", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementIntuneBrandingProfileAssignment", "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementIntuneBrandingProfileAssignment", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementIoUpdateStatuses", "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementIoUpdateStatuses", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -186776,20 +186325,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDevice", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -186810,275 +186359,275 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceCategory", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceEncryptionState", "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceEncryptionState", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceLogCollectionRequest", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceSecurityBaselineState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceWindowDeviceAccount", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementManagedDeviceWindowDeviceAccount", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementManagedDeviceWindowDeviceAccount", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementManagedDeviceWindowDeviceAccount", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementManagedDeviceWindowProtectionState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187093,20 +186642,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelHealthThreshold", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187121,20 +186670,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelServerLogCollectionResponse", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187149,20 +186698,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelSite", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelSite", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187177,20 +186726,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187205,20 +186754,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -187233,295 +186782,295 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEvent", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementNdeConnector", "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementNdeConnector", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementNotificationMessageTemplate", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementNotificationMessageTemplate", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementPartner", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRemoteActionAudit", "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementRemoteActionAudit", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRemoteAssistancePartner", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRemoteAssistancePartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Reports", + "Command": "Update-MgDeviceManagementReport", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -187542,18 +187091,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Update-MgDeviceManagementReport", "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Reports", + "Command": "Update-MgDeviceManagementReport", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -187574,2028 +187123,2028 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Update-MgDeviceManagementResourceAccessProfile", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementResourceAccessProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementResourceAccessProfileAssignment", "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementResourceAccessProfileAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementResourceOperation", "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementResourceOperation", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleAssignment", "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleDefinition", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleDefinition", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleScopeTag", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleScopeTag", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementRoleScopeTagAssignment", "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementRoleScopeTagAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementScript", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScript", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementScriptAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScriptAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementScriptDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScriptDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementScriptGroupAssignment", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScriptGroupAssignment", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementScriptUserRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScriptUserRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementScriptUserRunStateDeviceRunState", "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementScriptUserRunStateDeviceRunState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementSettingDefinition", "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementSettingDefinition", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTemplate", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTemplate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTemplateCategory", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTemplateCategory", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTemplateCategoryRecommendedSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTemplateCategoryRecommendedSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTemplateMigratableTo", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTemplateMigratableTo", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTemplateSetting", "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTemplateSetting", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndCondition", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndCondition", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatuses", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndConditionAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndConditionAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTermAndConditionGroupAssignment", "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementTermAndConditionGroupAssignment", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementTroubleshootingEvent", "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementTroubleshootingEvent", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update2", "UpdateExpanded2", "UpdateViaIdentity2", "UpdateViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update3", "UpdateExpanded3", "UpdateViaIdentity3", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOSVersion", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update4", "UpdateExpanded4", "UpdateViaIdentity4", "UpdateViaIdentityExpanded4" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategory", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticImpactingProcess", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticMetricHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticModelScore", "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticModelScore", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticOverview", "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticOverview", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummary", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryManufacturerRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryModelRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Uri": "/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticRegressionSummaryOperatingSystemRegression", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticRemoteConnection", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticResourcePerformance", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticScoreHistory", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementUserPfxCertificate", "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementUserPfxCertificate", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointDeviceImage", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointDeviceImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointGalleryImage", "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointGalleryImage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/updateAdDomainPassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointOnPremisesConnection", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointOrganizationSetting", "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicy", "Permissions": { "Name": "CloudPC.ReadWrite.All", "Description": "Read and write Cloud PCs", "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointServicePlan", "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointServicePlan", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointSupportedRegion", "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointSupportedRegion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointUserSetting", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointUserSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Administration", + "Command": "Update-MgDeviceManagementVirtualEndpointUserSettingAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Administration" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfile", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfile", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfileAssignedDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowAutopilotDeploymentProfileAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotDeviceIdentityDeviceProperty", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", + "ApiVersion": "beta", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementWindowAutopilotDeviceIdentityDeviceProperty", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotDeviceIdentityDeviceProperty", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "DeviceManagement.Actions", + "Command": "Update-MgDeviceManagementWindowAutopilotDeviceIdentityDeviceProperty", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Actions" }, { - "Command": "Update-MgDeviceManagementWindowAutopilotSetting", "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowAutopilotSetting", "Permissions": { "Name": "DeviceManagementServiceConfig.ReadWrite.All", "Description": "Read and write Microsoft Intune configuration", "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowFeatureUpdateProfile", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowFeatureUpdateProfile", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgDeviceManagementWindowFeatureUpdateProfileAssignment", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowInformationProtectionAppLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowInformationProtectionNetworkLearningSummary", "Permissions": { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementWindowMalwareInformation", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowMalwareInformation", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement", + "Command": "Update-MgDeviceManagementWindowMalwareInformationDeviceMalwareState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement" }, { - "Command": "Update-MgDeviceUsageRights", "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDeviceUsageRights", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectory", "Uri": "/directory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectory", "Uri": "/directory", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -189610,20 +189159,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryAdministrativeUnit", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryAdministrativeUnit", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -189638,380 +189187,380 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryAdministrativeUnitExtension", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryAdministrativeUnitExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryAdministrativeUnitScopedRoleMember", "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryAdministrativeUnitScopedRoleMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryAttributeSet", "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryAttributeSet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryCustomSecurityAttributeDefinition", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryCustomSecurityAttributeDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryDeletedItem", "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryDeletedItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryFeatureRolloutPolicy", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryFeatureRolloutPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryFeatureRolloutPolicyApplyTo", "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryFederationConfiguration", "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryFederationConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryImpactedResource", "Uri": "/directory/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryInboundSharedUserProfile", "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryInboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DirectoryObjects", + "Command": "Update-MgDirectoryObject", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Update-MgDirectoryObject", "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DirectoryObjects", + "Command": "Update-MgDirectoryObject", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DirectoryObjects" }, { - "Command": "Update-MgDirectoryOutboundSharedUserProfile", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryOutboundSharedUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryOutboundSharedUserProfileTenant", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryOutboundSharedUserProfileTenant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRecommendation", "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRecommendation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRecommendationImpactedResource", "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{recommendationResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRecommendationImpactedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRole", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRole", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRoleScopedMember", "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRoleScopedMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectoryRoleTemplate", "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectoryRoleTemplate", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectorySetting", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectorySetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -190026,255 +189575,255 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectorySettingTemplate", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectorySettingTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDirectorySharedEmailDomain", "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDirectorySharedEmailDomain", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomain", "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomain", "Permissions": { "Name": "Domain.ReadWrite.All", "Description": "Read and write domains", "FullDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomainServiceConfigurationRecord", "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomainServiceConfigurationRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomainSharedEmailDomainInvitation", "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomainSharedEmailDomainInvitation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDomainVerificationDnsRecord", "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgDomainVerificationDnsRecord", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDrive", "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveBundle", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveBundle", "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveBundle", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveFollowing", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveFollowing", "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveFollowing", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveItem", "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -190295,20 +189844,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveItem", "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveItem", "Permissions": [ { "Name": "Files.ReadWrite", @@ -190329,503 +189878,501 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveList", "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListColumn", "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentType", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentTypeColumn", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListContentTypeColumnLink", "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListDrive", "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemDriveItem", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemVersion", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListItemVersionField", "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveListSubscription", "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveRoot", "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveSpecial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgDriveSpecial", "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgDriveSpecial", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClass", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClass", "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClass", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignment", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -190835,16 +190382,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentCategory", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -190854,73 +190401,75 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentDefault", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentDefault", "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentDefault", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -190935,20 +190484,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentRubric", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -190963,80 +190512,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSetting", "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSetting", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmission", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -191051,20 +190600,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -191079,346 +190628,226 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMe", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationMe", "Uri": "/education/me", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMe", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignment", - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignment", "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentCategory", - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "beta", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentCategory", "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentResource", "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentRubric", "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentRubric", - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentSubmission", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentSubmission", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentSubmissionOutcome", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentSubmissionOutcome", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentSubmissionResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentSubmissionResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeAssignmentSubmissionSubmittedResource", "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationMeAssignmentSubmissionSubmittedResource", - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -191433,20 +190862,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationMeRubric", "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationMeRubric", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -191461,469 +190890,347 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationRoot", "Uri": "/education", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationRoot", "Uri": "/education", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationSchool", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationSchool", "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationSchool", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationSynchronizationProfile", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationSynchronizationProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationSynchronizationProfileError", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationSynchronizationProfileError", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationSynchronizationProfileStatus", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationSynchronizationProfileStatus", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUser", "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUser", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignment", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignment", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentCategory", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentCategory", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentRubric", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentRubric", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentSubmission", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentSubmission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentSubmission", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentSubmissionOutcome", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentSubmissionOutcome", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentSubmissionOutcome", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentSubmissionResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentSubmissionResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentSubmissionResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserAssignmentSubmissionSubmittedResource", "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserAssignmentSubmissionSubmittedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] - }, - { - "Command": "Update-MgEducationUserAssignmentSubmissionSubmittedResource", - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Method": "PATCH", - "Module": "Education", - "Permissions": [], - "ApiVersion": "v1.0", + ], "OutputType": null, - "Variants": [ - "Update1", - "UpdateExpanded1", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded1" - ] + "Module": "Education" }, { - "Command": "Update-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEducationUserRubric", "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Education", + "Command": "Update-MgEducationUserRubric", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Education" }, { - "Command": "Update-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackage", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackage", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignment", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/reprocess", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignment", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -191931,96 +191238,96 @@ "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "beta", "Method": "POST", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -192028,686 +191335,686 @@ "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageCatalog", "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageCatalog", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageIncompatibleGroup", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageIncompatibleGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageResourceRequest", "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageResourceRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAccessPackageResourceRoleScope", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAccessPackageResourceRoleScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAssignment", "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementAssignmentRequest", "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementAssignmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementCatalog", "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementCatalog", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganization", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganization", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganizationExternalSponsor", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementConnectedOrganizationInternalSponsor", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementSetting", "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementSetting", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgEntitlementManagementSetting", "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgEntitlementManagementSetting", "Permissions": { "Name": "EntitlementManagement.ReadWrite.All", "Description": "Read and write entitlement management resources", "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgExternal", "Uri": "/external", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgExternal", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgExternal", "Uri": "/external", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgExternal", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgExternalConnection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgExternalConnection", "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgExternalConnection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgFinancial", "Uri": "/financials", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancial", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompany", "Uri": "/financials/companies/{company-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompany", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyAccount", "Uri": "/financials/companies/{company-id}/accounts/{account-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyAgedAccountPayable", "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyAgedAccountPayable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyAgedAccountReceivable", "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyAgedAccountReceivable", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCountryRegion", "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCountryRegion", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCurrency", "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCurrency", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomer", "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomer", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerCurrency", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPayment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournal", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalAccount", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPayment", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -192717,16 +192024,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -192736,61 +192043,61 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerPicture", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyDimension", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyDimension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyDimensionValue", "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/{dimensionValue-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyDimensionValue", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -192800,126 +192107,126 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyEmployee", "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyEmployee", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyEmployeePicture", "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyEmployeePicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyGeneralLedgerEntry", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyGeneralLedgerEntry", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyGeneralLedgerEntryAccount", "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyGeneralLedgerEntryAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyInformation", "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyInformation", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyItem", "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyItem", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyItemCategory", "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyItemCategory", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -192929,66 +192236,66 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyItemPicture", "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyJournal", "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyJournal", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyJournalAccount", "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyJournalAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyJournalLine", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyJournalLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -192998,16 +192305,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyJournalLineAccount", "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyJournalLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193017,101 +192324,101 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPaymentMethod", "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPaymentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPaymentTerm", "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPaymentTerm", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPicture", "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoice", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceLine", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193121,16 +192428,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193140,16 +192447,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItem", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193159,16 +192466,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193178,16 +192485,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193197,496 +192504,496 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendor", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendor", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyPurchaseInvoiceVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemo", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomer", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoPaymentTerm", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoice", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomer", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPicture", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceLine", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193696,16 +193003,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceLineAccount", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193715,16 +193022,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceLineItem", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193734,16 +193041,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceLineItemCategory", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193753,16 +193060,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceLineItemPicture", "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193772,166 +193079,166 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoicePaymentTerm", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoicePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleInvoiceShipmentMethod", "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleInvoiceShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrder", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomer", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomerPicture", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderLine", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193941,16 +193248,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderLineAccount", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193960,16 +193267,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderLineItem", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193979,16 +193286,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderLineItemCategory", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -193998,16 +193305,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderLineItemPicture", "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", - "Method": "PATCH", - "Module": "Financials", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, + "Method": "PATCH", + "Command": "Update-MgFinancialCompanySaleOrderLineItemPicture", + "Permissions": [], "Variants": [ "Update", "Update1", @@ -194017,151 +193324,151 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleOrderPaymentTerm", "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleOrderPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuote", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuote", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomer", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomerCurrency", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomerCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomerPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomerPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomerPicture", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomerPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteCustomerShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteLine", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteLine", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194171,16 +193478,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteLineAccount", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteLineAccount", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194190,16 +193497,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteLineItem", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteLineItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194209,16 +193516,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteLineItemCategory", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteLineItemCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194228,16 +193535,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteLineItemPicture", "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteLineItemPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194247,203 +193554,205 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuotePaymentTerm", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuotePaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanySaleQuoteShipmentMethod", "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanySaleQuoteShipmentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyShipmentMethod", "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyShipmentMethod", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyTaxArea", "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyTaxArea", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyTaxGroup", "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyTaxGroup", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyUnit", "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyUnit", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyVendor", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyVendor", "Permissions": { "Name": "Financials.ReadWrite.All", "Description": "Read and write financials data", "FullDescription": "Allows the app to read and write financials data on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyVendorCurrency", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyVendorCurrency", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyVendorPaymentMethod", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyVendorPaymentMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyVendorPaymentTerm", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyVendorPaymentTerm", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgFinancialCompanyVendorPicture", "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Financials", + "Command": "Update-MgFinancialCompanyVendorPicture", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Financials" }, { - "Command": "Update-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -194464,20 +193773,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroup", "Uri": "/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroup", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -194498,213 +193807,211 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgGroupAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgGroupAppRoleAssignment", "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgGroupAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupCalendarMultiValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupCalendarPermission", "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupCalendarSingleValueExtendedProperty", "Uri": "/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversation", "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThread", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -194714,16 +194021,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPost", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194733,151 +194040,151 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostAttachment", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostExtension", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostMention", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupConversationThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupConversationThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgGroupDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -194887,16 +194194,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgGroupDrive", "Uri": "/groups/{group-id}/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgGroupDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -194906,28 +194213,30 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgGroupEndpoint", "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEvent", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -194942,20 +194251,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEvent", "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEvent", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -194970,443 +194279,441 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventAttachment", "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventExceptionOccurrence", "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventExtension", "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventInstance", "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventMultiValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupEventSingleValueExtendedProperty", "Uri": "/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgGroupEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupExtension", "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupLifecyclePolicy", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupLifecyclePolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenoteNotebook", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenotePage", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Method": "POST", - "Module": "Groups", + "Command": "Update-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupOnenotePageContent", "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Groups", + "Command": "Update-MgGroupOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Patch1", "PatchExpanded1", "PatchViaIdentity1", "PatchViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenoteSection", "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupOnenoteSectionGroup", "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgGroupOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupPermissionGrant", "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupPermissionGrant", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupPhoto", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -195416,21 +194723,21 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupPhoto", "Uri": "/groups/{group-id}/photo", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupPhoto", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -195440,73 +194747,75 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupPlanner", "Uri": "/groups/{group-id}/planner", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgGroupPlanner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgGroupPlanner", "Uri": "/groups/{group-id}/planner", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgGroupPlanner", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgGroupPlannerPlanDetail", "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgGroupPlannerPlanDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgGroupSetting", "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupSetting", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -195521,123 +194830,121 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgGroupSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgGroupSite", "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgGroupSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgGroupTeam", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgGroupTeam", "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgGroupTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThread", "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThread", "Permissions": { "Name": "Group.ReadWrite.All", "Description": "Read and write all groups", "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -195647,16 +194954,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPost", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPost", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -195666,168 +194973,170 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostAttachment", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostExtension", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostMention", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostMultiValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgGroupThreadPostSingleValueExtendedProperty", "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgGroupThreadPostSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgIdentityConditionalAccessAuthenticationContextClassReference", "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityConditionalAccessAuthenticationContextClassReference", "Permissions": { "Name": "Policy.ReadWrite.ConditionalAccess", "Description": "Read and write your organization's conditional access policies", "FullDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -195842,20 +195151,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityConditionalAccessNamedLocation", "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityConditionalAccessNamedLocation", "Permissions": [ { "Name": "Policy.Read.All", @@ -195870,20 +195179,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Application.Read.All", @@ -195904,20 +195213,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityConditionalAccessPolicy", "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityConditionalAccessPolicy", "Permissions": [ { "Name": "Application.Read.All", @@ -195938,348 +195247,348 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityGovernanceAccessReviewDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgIdentityGovernanceAccessReviewDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInsight", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstance", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgIdentityGovernanceAccessReviewDecisionInstanceDecision", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityProvider", "Uri": "/identityProviders/{identityProvider-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityProvider", "Permissions": { "Name": "IdentityProvider.ReadWrite.All", "Description": "Read and write identity providers", "FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgIdentityUserFlow", "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgIdentityUserFlow", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtection", "Uri": "/informationProtection", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtection", "Uri": "/informationProtection", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionBitlocker", "Uri": "/informationProtection/bitlocker", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionBitlocker", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionBitlockerRecoveryKey", "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionBitlockerRecoveryKey", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionDataLossPreventionPolicy", "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionDataLossPreventionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionPolicy", "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionPolicyLabel", "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionPolicyLabel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionSensitivityPolicySetting", "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionSensitivityPolicySetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionThreatAssessmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionThreatAssessmentRequest", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionThreatAssessmentRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -196300,20 +195609,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgOauth2PermissionGrant", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgOauth2PermissionGrant", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -196334,114 +195643,112 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgOfficeClientConfiguration", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgOfficeClientConfiguration", "Permissions": { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune Device Configuration and Policies", "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgOfficeClientConfigurationAssignment", "Uri": "/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments/{officeClientConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgOfficeClientConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgOfficeClientConfigurationPriority", "Uri": "/officeConfiguration/clientConfigurations/updatePriorities", + "ApiVersion": "beta", "Method": "POST", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgOfficeClientConfigurationPriority", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgOfficeConfiguration", "Uri": "/officeConfiguration", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgOfficeConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgOnPremisePublishingProfile", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -196455,16 +195762,16 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -196474,16 +195781,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -196493,16 +195800,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -196512,81 +195819,81 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileConnector", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", - "Method": "PATCH", - "Module": "Applications", - "Permissions": [], "ApiVersion": "beta", - "OutputType": null, + "Method": "PATCH", + "Command": "Update-MgOnPremisePublishingProfileConnector", + "Permissions": [], "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileConnectorGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileConnectorGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfileConnectorMemberOf", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfileConnectorMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfilePublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfilePublishedResource", "Permissions": { "Name": "OnPremisesPublishingProfiles.ReadWrite.All", "Description": "Manage on-premises published resources", "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -196596,43 +195903,45 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroupAgent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgOnPremisePublishingProfilePublishedResourceAgentGroupPublishedResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -196653,20 +195962,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganization", "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganization", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -196687,221 +195996,221 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationBranding", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationBranding", "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationBranding", "Permissions": { "Name": "Organization.ReadWrite.All", "Description": "Read and write organization information", "FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationExtension", "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationSetting", "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationSettingItemInsight", "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationSettingItemInsight", "Permissions": { "Name": "User.ReadWrite.All", "Description": "Read and write all users' full profiles", "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationSettingPersonInsight", "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationSettingPersonInsight", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgOrganizationSettingProfileCardProperty", "Uri": "/organization/{organization-id}/settings/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgOrganizationSettingProfileCardProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgPlace", "Permissions": { "Name": "Place.ReadWrite.All", "Description": "Read and write organization places", "FullDescription": "Allows the app to manage organization places (conference rooms and room lists) for calendar events and other applications, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgPlace", "Uri": "/places/{place-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgPlace", "Permissions": { "Name": "Place.ReadWrite.All", "Description": "Read and write organization places", "FullDescription": "Allows the app to manage organization places (conference rooms and room lists) for calendar events and other applications, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgPlanner", "Uri": "/planner", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlanner", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlanner", "Uri": "/planner", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlanner", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -196916,20 +196225,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerBucket", "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerBucket", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -196944,20 +196253,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -196972,20 +196281,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerPlan", "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerPlan", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197000,20 +196309,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerPlanDetail", "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerPlanDetail", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197028,20 +196337,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerPlanDetail", "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerPlanDetail", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197056,50 +196365,50 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerRoster", "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerRoster", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerRosterMember", "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerRosterMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197114,20 +196423,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTask", "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTask", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197142,20 +196451,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197170,20 +196479,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197198,20 +196507,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197226,20 +196535,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197254,20 +196563,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskDetail", "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskDetail", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197282,20 +196591,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskDetail", "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskDetail", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197310,20 +196619,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197338,20 +196647,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -197366,443 +196675,443 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgPolicyAccessReviewPolicy", "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAccessReviewPolicy", "Permissions": { "Name": "Policy.ReadWrite.AccessReviews", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAdminConsentRequestPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAdminConsentRequestPolicy", "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAdminConsentRequestPolicy", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAppManagementPolicy", "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAppManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthenticationFlowPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationFlows", "Description": "Read and write your authentication flow policies", "FullDescription": "Allows the app to read and write the authentication flow policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthenticationFlowPolicy", "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthenticationFlowPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationFlows", "Description": "Read and write your authentication flow policies", "FullDescription": "Allows the app to read and write the authentication flow policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationMethod", "Description": "Read and write your authentication method policies ", "FullDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthenticationMethodPolicy", "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationMethod", "Description": "Read and write your authentication method policies ", "FullDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthorizationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthorizationPolicy", "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthorizationPolicy", "Permissions": { "Name": "Policy.ReadWrite.Authorization", "Description": "Read and write your organization's authorization policy", "FullDescription": "Allows the app to read and write your organization's authorization policy on your behalf. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyAuthorizationPolicyDefaultUserRoleOverride", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyB2CAuthenticationMethodPolicy", "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyB2CAuthenticationMethodPolicy", "Permissions": { "Name": "Policy.ReadWrite.AuthenticationMethod", "Description": "Read and write your authentication method policies ", "FullDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyClaimMappingPolicy", "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyClaimMappingPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyDefaultAppManagementPolicy", "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyDefaultAppManagementPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyDirectoryRoleAccessReviewPolicy", "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyDirectoryRoleAccessReviewPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyFeatureRolloutPolicy", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyFeatureRolloutPolicy", "Permissions": { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyFeatureRolloutPolicyApplyTo", "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyFeatureRolloutPolicyApplyTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -197817,18 +197126,18 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -197843,18 +197152,18 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyMobileAppManagementPolicy", "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyMobileAppManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -197869,20 +197178,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyMobileDeviceManagementPolicy", "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyMobileDeviceManagementPolicy", "Permissions": [ { "Name": "Policy.Read.All", @@ -197897,150 +197206,150 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicy", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicy", "Permissions": { "Name": "Policy.ReadWrite.PermissionGrant", "Description": "Manage consent and permission grant policies", "FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicyExclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicyExclude", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyPermissionGrantPolicyInclude", "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyPermissionGrantPolicyInclude", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyRoleManagementPolicy", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyRoleManagementPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyRoleManagementPolicyAssignment", "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyRoleManagementPolicyAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyRoleManagementPolicyEffectiveRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyRoleManagementPolicyEffectiveRule", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -198055,20 +197364,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyRoleManagementPolicyRule", "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyRoleManagementPolicyRule", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -198083,241 +197392,241 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyServicePrincipalCreationPolicy", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyServicePrincipalCreationPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyServicePrincipalCreationPolicyExclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyServicePrincipalCreationPolicyExclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyServicePrincipalCreationPolicyInclude", "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyServicePrincipalCreationPolicyInclude", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyTokenIssuancePolicy", "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyTokenIssuancePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPolicyTokenLifetimePolicy", "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgPolicyTokenLifetimePolicy", "Permissions": { "Name": "Policy.ReadWrite.ApplicationConfiguration", "Description": "Read and write your organization's application configuration policies", "FullDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgPrint", "Uri": "/print", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrint", "Uri": "/print", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintConnector", "Permissions": { "Name": "PrintConnector.ReadWrite.All", "Description": "Read and write print connectors", "FullDescription": "Allows the application to read and write print connectors on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintConnector", "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintConnector", "Permissions": { "Name": "PrintConnector.ReadWrite.All", "Description": "Read and write print connectors", "FullDescription": "Allows the application to read and write print connectors on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintOperation", "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -198332,20 +197641,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintPrinter", "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintPrinter", "Permissions": [ { "Name": "Printer.FullControl.All", @@ -198360,328 +197669,328 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintPrinterShare", "Uri": "/print/printerShares/{printerShare-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintPrinterShare", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintPrinterTaskTrigger", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintPrinterTaskTrigger", "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintPrinterTaskTrigger", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintReport", "Uri": "/print/reports", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintService", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintService", "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintService", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintServiceEndpoint", "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintServiceEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintShare", "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintShare", "Permissions": { "Name": "PrinterShare.ReadWrite.All", "Description": "Read and update printer shares", "FullDescription": "Allows the application to read and update printer shares on your behalf. ", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintTaskDefinition", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintTaskDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrintTaskDefinitionTask", "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CloudPrint", + "Command": "Update-MgPrintTaskDefinitionTask", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CloudPrint" }, { - "Command": "Update-MgPrivilegedAccess", "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccess", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedAccessResource", "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccessResource", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedAccessRoleAssignment", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccessRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedAccessRoleAssignmentRequest", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccessRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedAccessRoleDefinition", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccessRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedAccessRoleSetting", "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedAccessRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedApproval", "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedApproval", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -198696,178 +198005,176 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedApprovalRoleInfo", "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedApprovalRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedOperationEvent", "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedOperationEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRole", "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRole", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleAssignment", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleAssignmentRequest", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleAssignmentRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleAssignmentRequestRoleInfo", "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleAssignmentRequestRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleAssignmentRoleInfo", "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleAssignmentRoleInfo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleSetting", "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgPrivilegedRoleSummary", "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgPrivilegedRoleSummary", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgProgram", "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgProgram", "Permissions": { "Name": "ProgramControl.ReadWrite.All", "Description": "Manage programs that you can access", "FullDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgProgramControl", "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgProgramControl", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -198877,335 +198184,352 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgProgramControlProgram", "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgProgramControlProgram", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.Governance" }, { - "Command": "Update-MgProgramControlType", "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.Governance", + "Command": "Update-MgProgramControlType", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], "OutputType": null, + "Module": "Identity.Governance" + }, + { + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", + "Method": "PATCH", + "Command": "Update-MgReportAuthenticationMethodUserRegistrationDetail", + "Permissions": [], "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Reports" }, { - "Command": "Update-MgRiskDetection", "Uri": "/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgRiskDetection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgRiskyUser", "Uri": "/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgRiskyUser", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgRiskyUserHistory", "Uri": "/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgRiskyUserHistory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgRoleManagement", "Uri": "/roleManagement", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagement", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagement", "Uri": "/roleManagement", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagement", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPc", "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPc", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcResourceNamespace", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcRoleAssignment", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcRoleAssignmentAppScope", "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcRoleDefinition", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagement", "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagement", "Permissions": { "Name": "DeviceManagementRBAC.ReadWrite.All", "Description": "Read and write Microsoft Intune RBAC settings", "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementResourceNamespace", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementRoleAssignment", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementRoleDefinition", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementRoleDefinition", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -199232,667 +198556,667 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectory", "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryResourceNamespace", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignment", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentApproval", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentSchedule", "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleDefinition", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleDefinition", "Permissions": { "Name": "RoleManagement.ReadWrite.Directory", "Description": "Read and write directory RBAC settings", "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleEligibilitySchedule", "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagement", "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagement", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespace", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespace", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentApproval", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentApprovalStep", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "DeviceManagement.Enrolment", + "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "DeviceManagement.Enrolment" }, { - "Command": "Update-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "SchemaExtensions", + "Command": "Update-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -199907,20 +199231,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "SchemaExtensions" }, { - "Command": "Update-MgSchemaExtension", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "SchemaExtensions", + "Command": "Update-MgSchemaExtension", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -199935,382 +199259,382 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "SchemaExtensions" }, { - "Command": "Update-MgSearchAcronym", "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgSearchAcronym", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgSearchBookmark", "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgSearchBookmark", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgSearchEntity", "Uri": "/search", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgSearchEntity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgSearchEntity", "Uri": "/search", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgSearchEntity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgSearchQna", "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Search", + "Command": "Update-MgSearchQna", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Search" }, { - "Command": "Update-MgSecurityAction", "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityAction", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityAlert", "Permissions": { "Name": "SecurityEvents.ReadWrite.All", "Description": "Read and update your organization’s security events", "FullDescription": "Allows the app to read your organization’s security events on your behalf. Also allows you to update editable properties in security events.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityAlert", "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityAlert", "Permissions": { "Name": "SecurityEvents.ReadWrite.All", "Description": "Read and update your organization’s security events", "FullDescription": "Allows the app to read your organization’s security events on your behalf. Also allows you to update editable properties in security events.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "UpdateExpanded2", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityAlertMultiple", "Uri": "/security/alerts/updateAlerts", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Update-MgSecurityAlertMultiple", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphAlert", + "Module": "Security" }, { - "Command": "Update-MgSecurityCloudAppSecurityProfile", "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityCloudAppSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityDomainSecurityProfile", "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityDomainSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityFileSecurityProfile", "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityFileSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityHostSecurityProfile", "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityHostSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityIncident", "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityIncident", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityIPSecurityProfile", "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityIPSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityProviderTenantSetting", "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityProviderTenantSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecuritySecureScore", "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecuritySecureScore", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecuritySecureScoreControlProfile", "Permissions": { "Name": "SecurityEvents.ReadWrite.All", "Description": "Read and update your organization’s security events", "FullDescription": "Allows the app to read your organization’s security events on your behalf. Also allows you to update editable properties in security events.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecuritySecureScoreControlProfile", "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecuritySecureScoreControlProfile", "Permissions": { "Name": "SecurityEvents.ReadWrite.All", "Description": "Read and update your organization’s security events", "FullDescription": "Allows the app to read your organization’s security events on your behalf. Also allows you to update editable properties in security events.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityTiIndicator", "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityTiIndicator", "Permissions": { "Name": "ThreatIndicators.ReadWrite.OwnedBy", "Description": "Manage threat indicators this app creates or owns", "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgSecurityTiIndicatorMultiple", "Uri": "/security/tiIndicators/updateTiIndicators", + "ApiVersion": "beta", "Method": "POST", - "Module": "Security", + "Command": "Update-MgSecurityTiIndicatorMultiple", "Permissions": [], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": "IMicrosoftGraphTiIndicator", + "Module": "Security" }, { - "Command": "Update-MgSecurityUserSecurityProfile", "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Security", + "Command": "Update-MgSecurityUserSecurityProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Security" }, { - "Command": "Update-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -200325,20 +199649,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipal", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipal", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -200353,170 +199677,170 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalAppRoleAssignedTo", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalAppRoleAssignedTo", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalAppRoleAssignedTo", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalAppRoleAssignment", "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalEndpoint", "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalEndpoint", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalFederatedIdentityCredential", "Uri": "/servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalFederatedIdentityCredential", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalLicenseDetail", "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalPasswordSingleSignOnCredentials", "Uri": "/servicePrincipals/{servicePrincipal-id}/updatePasswordSingleSignOnCredentials", + "ApiVersion": "beta", "Method": "POST", - "Module": "Applications", + "Command": "Update-MgServicePrincipalPasswordSingleSignOnCredentials", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -200543,368 +199867,366 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronization", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronization", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationJob", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationJob", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationJobSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationJobSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationJobSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationJobSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationTemplate", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationTemplate", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationTemplateSchema", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationTemplateSchema", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareDriveItem", "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareItem", "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareList", "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListColumn", "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentType", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentType", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentType", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentTypeColumn", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentTypeColumn", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListContentTypeColumnLink", "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListDrive", "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -200914,16 +200236,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -200933,16 +200255,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -200952,16 +200274,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemDriveItem", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -200971,16 +200293,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -200990,16 +200312,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -201009,16 +200331,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -201028,16 +200350,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemVersion", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -201047,16 +200369,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -201066,16 +200388,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListItemVersionField", "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -201085,193 +200407,195 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareListSubscription", "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareListSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgSharePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgSharePermission", "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgSharePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareRoot", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareRoot", "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareRoot", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareSharedDriveItemSharedDriveItem", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareSharedDriveItemSharedDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgShareSite", "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgShareSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update3", "UpdateExpanded3", "UpdateViaIdentity3", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSite", "Uri": "/sites/{site-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201286,20 +200610,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteColumn", "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201314,20 +200638,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201342,20 +200666,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentType", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201370,20 +200694,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201398,20 +200722,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentTypeColumn", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201426,53 +200750,51 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteContentTypeColumnLink", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -201482,16 +200804,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteDrive", "Uri": "/sites/{site-id}/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -201501,43 +200823,45 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteList", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteList", "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteList", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201552,20 +200876,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListColumn", "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201580,20 +200904,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201608,20 +200932,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentType", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentType", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201636,20 +200960,20 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201664,20 +200988,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentTypeColumn", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentTypeColumn", "Permissions": [ { "Name": "Sites.FullControl.All", @@ -201692,493 +201016,506 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListContentTypeColumnLink", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListContentTypeColumnLink", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListDrive", "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemDriveItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemDriveItem", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemDriveItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemField", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemField", "Permissions": { "Name": "Sites.ReadWrite.All", "Description": "Edit or delete items in all site collections", "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemVersion", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemVersion", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListItemVersionField", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListItemVersionField", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListSubscription", - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteListSubscription", "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteListSubscription", "Permissions": [], - "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], "OutputType": null, + "Module": "Sites" + }, + { + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", + "Method": "PATCH", + "Command": "Update-MgSiteListSubscription", + "Permissions": [], "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenoteNotebook", "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenotePage", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Method": "POST", - "Module": "Sites", + "Command": "Update-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteOnenotePageContent", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Sites", + "Command": "Update-MgSiteOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Patch1", "PatchExpanded1", "PatchViaIdentity1", "PatchViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenoteSection", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSiteOnenoteSectionGroup", "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgSiteOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgSitePage", "Uri": "/sites/{site-id}/pages/{sitePage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSitePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSitePermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSitePermission", "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSitePermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStore", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStore", "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStore", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "Update2", @@ -202188,16 +201525,16 @@ "UpdateViaIdentity2", "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202207,16 +201544,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSet", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202226,16 +201563,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202253,16 +201590,16 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetChildRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202272,16 +201609,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetParentGroup", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202291,16 +201628,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202310,16 +201647,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetTerm", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetTerm", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202329,16 +201666,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetTermChild", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202348,16 +201685,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreGroupSetTermRelation", "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreGroupSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202367,21 +201704,21 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSet", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202391,16 +201728,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202418,16 +201755,16 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetChildRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetChildRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202437,16 +201774,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetParentGroup", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetParentGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202456,16 +201793,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetParentGroupSet", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetParentGroupSet", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202475,16 +201812,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202494,21 +201831,21 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetTerm", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetTerm", "Permissions": { "Name": "TermStore.ReadWrite.All", "Description": "Read and write term store data", "FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202518,16 +201855,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetTermChild", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetTermChild", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202537,16 +201874,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSiteTermStoreSetTermRelation", "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSiteTermStoreSetTermRelation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -202556,103 +201893,105 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgSubscribedSku", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgSubscribedSku", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgSubscribedSku", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "ChangeNotifications", + "Command": "Update-MgSubscription", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "ChangeNotifications" }, { - "Command": "Update-MgSubscription", "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "ChangeNotifications", + "Command": "Update-MgSubscription", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "ChangeNotifications" }, { - "Command": "Update-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSubSite", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgSubSite", "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Sites", + "Command": "Update-MgSubSite", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "UpdateExpanded2", "UpdateViaIdentity2", "UpdateViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Sites" }, { - "Command": "Update-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -202673,20 +202012,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeam", "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeam", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -202707,20 +202046,20 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannel", "Permissions": [ { "Name": "ChannelSettings.ReadWrite.All", @@ -202741,20 +202080,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannel", "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannel", "Permissions": [ { "Name": "ChannelSettings.ReadWrite.All", @@ -202775,50 +202114,50 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelFileFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelFileFolder", "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelFileFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -202833,20 +202172,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMember", "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMember", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -202861,80 +202200,80 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMessage", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelMessageReply", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -202961,20 +202300,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamChannelTab", "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamChannelTab", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -203001,23 +202340,21 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamInstalledApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", @@ -203025,16 +202362,16 @@ "UpdateViaIdentityExpanded", "Upgrade", "UpgradeViaIdentity" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamInstalledApp", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamInstalledApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", @@ -203042,443 +202379,445 @@ "UpdateViaIdentityExpanded1", "Upgrade1", "UpgradeViaIdentity1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamMember", "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamMember", "Permissions": { "Name": "TeamMember.ReadWrite.All", "Description": "Add and remove members from teams and channels", "FullDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamOperation", "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamOperation", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPermissionGrant", "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPermissionGrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPhoto", "Uri": "/teams/{team-id}/photo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPhoto", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannel", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannel", "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannel", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelFileFolder", "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelFileFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMember", "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMember", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMessage", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMessage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelMessageReply", "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelMessageReply", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamPrimaryChannelTab", "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamPrimaryChannelTab", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamSchedule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamSchedule", "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamSchedule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOfferShiftRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOfferShiftRequest", "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOfferShiftRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOpenShift", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOpenShift", "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOpenShift", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleSchedulingGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleSchedulingGroup", "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleSchedulingGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -203493,20 +202832,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleShift", "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleShift", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -203521,294 +202860,294 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeCard", "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeCard", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOff", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOff", "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOff", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOffReason", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOffReason", "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOffReason", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOffRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamScheduleTimeOffRequest", "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamScheduleTimeOffRequest", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamTag", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamTag", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamTagMember", "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamTagMember", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamwork", "Uri": "/teamwork", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamwork", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamwork", "Uri": "/teamwork", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamwork", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTeamworkWorkforceIntegration", "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgTeamworkWorkforceIntegration", "Permissions": { "Name": "WorkforceIntegration.ReadWrite.All", "Description": "Read and write workforce integrations", "FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgTrustFramework", "Uri": "/trustFramework", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgTrustFramework", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgTrustFrameworkKeySet", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgTrustFrameworkKeySet", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgTrustFrameworkPolicy", "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgTrustFrameworkPolicy", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -203865,20 +203204,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUser", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUser", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -203935,468 +203274,466 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CrossDeviceExperiences", + "Command": "Update-MgUserActivity", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Update-MgUserActivity", "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CrossDeviceExperiences", + "Command": "Update-MgUserActivity", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Update-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CrossDeviceExperiences", + "Command": "Update-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Update-MgUserActivityHistoryItem", "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CrossDeviceExperiences", + "Command": "Update-MgUserActivityHistoryItem", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Update-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgUserAppRoleAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgUserAppRoleAssignment", "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Applications", + "Command": "Update-MgUserAppRoleAssignment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Applications" }, { - "Command": "Update-MgUserAuthenticationEmailMethod", "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationEmailMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationFido2Method", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationFido2Method", "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationFido2Method", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMethod", "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMethod", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationOperation", "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationOperation", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationPhoneMethod", "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationPhoneMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationSoftwareOathMethod", "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationSoftwareOathMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationTemporaryAccessPassMethod", "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationTemporaryAccessPassMethod", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationWindowHello", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationWindowHello", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationWindowHello", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserAuthenticationWindowHelloForBusinessMethodDevice", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendar", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendar", "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendar", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarGroup", "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarGroup", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -204406,16 +203743,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarMultiValueExtendedProperty", "Uri": "/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -204425,16 +203762,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -204444,16 +203781,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarPermission", "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarPermission", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -204463,16 +203800,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update3", @@ -204482,16 +203819,16 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserCalendarSingleValueExtendedProperty", "Uri": "/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserCalendarSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "Update2", @@ -204501,591 +203838,591 @@ "UpdateViaIdentity2", "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserChat", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserChat", "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserChat", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContact", "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactExtension", "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolder", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderChildFolder", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContact", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContact", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactExtension", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactPhoto", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactPhoto", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactPhoto", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactMultiValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactPhoto", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactPhoto", "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactPhoto", "Permissions": { "Name": "Contacts.ReadWrite", "Description": "Have full access of your contacts ", "FullDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserContactSingleValueExtendedProperty", "Uri": "/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "PersonalContacts", + "Command": "Update-MgUserContactSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "PersonalContacts" }, { - "Command": "Update-MgUserDevice", "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CrossDeviceExperiences", + "Command": "Update-MgUserDevice", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CrossDeviceExperiences" }, { - "Command": "Update-MgUserDeviceEnrollmentConfiguration", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserDeviceEnrollmentConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserDeviceEnrollmentConfigurationAssignment", "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserDeviceEnrollmentConfigurationAssignment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgUserDrive", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -205095,16 +204432,16 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgUserDrive", "Uri": "/users/{user-id}/drive", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Files", + "Command": "Update-MgUserDrive", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -205114,743 +204451,745 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Files" }, { - "Command": "Update-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEvent", "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEvent", "Permissions": { "Name": "Calendars.ReadWrite", "Description": "Have full access to your calendars ", "FullDescription": "Allows the app to read, update, create and delete events in your calendars. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventAttachment", "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventExceptionOccurrence", "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventExceptionOccurrence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventExtension", "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventInstance", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventInstance", "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventInstance", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventMultiValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserEventSingleValueExtendedProperty", "Uri": "/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Calendar", + "Command": "Update-MgUserEventSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Calendar" }, { - "Command": "Update-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserExtension", "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserInferenceClassification", "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserInferenceClassification", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserInferenceClassificationOverride", "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserInferenceClassificationOverride", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserInformationProtection", "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.SignIns", + "Command": "Update-MgUserInformationProtection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.SignIns" }, { - "Command": "Update-MgUserJoinedGroup", "Uri": "/users/{user-id}/joinedGroups/{group-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Groups", + "Command": "Update-MgUserJoinedGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Groups" }, { - "Command": "Update-MgUserJoinedTeam", "Uri": "/users/{user-id}/joinedTeams/{team-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserJoinedTeam", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserLicenseDetail", "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserLicenseDetail", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolder", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderChildFolder", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderChildFolder", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessage", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageAttachment", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageExtension", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageMention", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageRule", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageRule", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMailFolderUserConfiguration", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMailFolderUserConfiguration", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -205871,20 +205210,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDevice", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDevice", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -205905,688 +205244,686 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceAssignmentFilterEvaluationStatusDetail", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceCategory", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceCategory", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceCompliancePolicyState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceCompliancePolicyState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceConfigurationState", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceLogCollectionResponse", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceLogCollectionResponse", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceMobileAppConfigurationState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceMobileAppConfigurationState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceSecurityBaselineState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceSecurityBaselineState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceSecurityBaselineStateSettingState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceSecurityBaselineStateSettingState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceWindowDeviceAccount", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserManagedDeviceWindowDeviceAccount", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserManagedDeviceWindowDeviceAccount", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserManagedDeviceWindowDeviceAccount", "Permissions": { "Name": "DeviceManagementManagedDevices.PriviligedOperation.All", "Description": "Consent name unavailable", "FullDescription": "Consent description unavailable", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserManagedDeviceWindowProtectionState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceWindowProtectionState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserManagedDeviceWindowProtectionStateDetectedMalwareState", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessage", "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessage", "Permissions": { "Name": "Mail.ReadWrite", "Description": "Read and write access to your mail ", "FullDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageAttachment", "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageAttachment", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageExtension", "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageMention", "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageMention", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageMultiValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMessageSingleValueExtendedProperty", "Uri": "/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Mail", + "Command": "Update-MgUserMessageSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Mail" }, { - "Command": "Update-MgUserMobileAppIntentAndState", "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserMobileAppIntentAndState", "Permissions": { "Name": "DeviceManagementManagedDevices.ReadWrite.All", "Description": "Read and write Microsoft Intune devices", "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserMobileAppTroubleshootingEvent", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserMobileAppTroubleshootingEvent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Devices.CorporateManagement", + "Command": "Update-MgUserMobileAppTroubleshootingEventAppLogCollectionRequest", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Devices.CorporateManagement" }, { - "Command": "Update-MgUserNotification", "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserNotification", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteNotebook", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenoteNotebook", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteNotebook", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenotePage", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenotePage", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenotePage", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserOnenotePageContent", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserOnenotePageContent", "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserOnenotePageContent", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Patch1", "PatchExpanded1", "PatchViaIdentity1", "PatchViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenoteSection", "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteSection", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnenoteSectionGroup", "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Notes", + "Command": "Update-MgUserOnenoteSectionGroup", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Notes" }, { - "Command": "Update-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeeting", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeeting", "Permissions": { "Name": "OnlineMeetings.ReadWrite", "Description": "Read and create your online meetings", "FullDescription": "Allows the app to read and create online meetings on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeetingAttendanceReport", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -206596,16 +205933,31 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeetingAttendanceReport", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Update2", + "UpdateExpanded2", + "UpdateViaIdentity2", + "UpdateViaIdentityExpanded2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", + "Method": "PATCH", + "Command": "Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "Permissions": [], "Variants": [ "Update", "Update1", @@ -206615,481 +205967,496 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeetingRegistration", - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord", "Permissions": [], - "ApiVersion": "beta", + "Variants": [ + "Update2", + "UpdateExpanded2", + "UpdateViaIdentity2", + "UpdateViaIdentityExpanded2" + ], "OutputType": null, + "Module": "CloudCommunications" + }, + { + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", + "Method": "PATCH", + "Command": "Update-MgUserOnlineMeetingRegistration", + "Permissions": [], "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeetingRegistrationCustomQuestion", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeetingRegistrationCustomQuestion", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOnlineMeetingRegistrationRegistrant", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrant-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserOnlineMeetingRegistrationRegistrant", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookMasterCategory", "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookMasterCategory", "Permissions": { "Name": "MailboxSettings.ReadWrite", "Description": "Read and write to your mailbox settings", "FullDescription": "Allows the app to read, update, create, and delete your mailbox settings.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTask", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskAttachment", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolder", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroup", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroup", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolder", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolder", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderTask", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderTask", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskAttachment", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskGroupTaskFolderTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskMultiValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskMultiValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserOutlookTaskSingleValueExtendedProperty", "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserOutlookTaskSingleValueExtendedProperty", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserPassword", "Uri": "/users/{user-id}/changePassword", + "ApiVersion": "beta", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserPassword", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Change1", "ChangeExpanded1", "ChangeViaIdentity1", "ChangeViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserPassword", "Uri": "/users/{user-id}/changePassword", + "ApiVersion": "v1.0", "Method": "POST", - "Module": "Users.Actions", + "Command": "Update-MgUserPassword", "Permissions": { "Name": "Directory.AccessAsUser.All", "Description": "Access the directory as you", "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users.Actions" }, { - "Command": "Update-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserPerson", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserPerson", "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserPerson", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserPhoto", "Permissions": { "Name": "User.ReadWrite", "Description": "Read and update your profile", "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "Update1", @@ -207099,21 +206466,21 @@ "UpdateViaIdentity1", "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserPhoto", "Uri": "/users/{user-id}/photo", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserPhoto", "Permissions": { "Name": "User.ReadWrite", "Description": "Read and update your profile", "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update2", "Update3", @@ -207123,13 +206490,15 @@ "UpdateViaIdentity3", "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserPlanner", "Uri": "/users/{user-id}/planner", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgUserPlanner", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -207144,20 +206513,20 @@ "IsAdmin": false } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgUserPlanner", "Uri": "/users/{user-id}/planner", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Planner", + "Command": "Update-MgUserPlanner", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -207172,65 +206541,65 @@ "IsAdmin": false } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Planner" }, { - "Command": "Update-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserPresence", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserPresence", "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "CloudCommunications", + "Command": "Update-MgUserPresence", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "CloudCommunications" }, { - "Command": "Update-MgUserProfile", "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfile", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileAccount", "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -207245,20 +206614,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileAddress", "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileAddress", "Permissions": [ { "Name": "User.ReadWrite", @@ -207273,20 +206642,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileAnniversary", "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileAnniversary", "Permissions": [ { "Name": "User.ReadWrite", @@ -207301,20 +206670,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileAward", "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileAward", "Permissions": [ { "Name": "User.ReadWrite", @@ -207329,20 +206698,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileCertification", "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileCertification", "Permissions": [ { "Name": "User.ReadWrite", @@ -207357,20 +206726,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileEducationalActivity", "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileEducationalActivity", "Permissions": [ { "Name": "User.ReadWrite", @@ -207385,20 +206754,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileEmail", "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileEmail", "Permissions": [ { "Name": "User.ReadWrite", @@ -207413,20 +206782,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileInterest", "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileInterest", "Permissions": [ { "Name": "User.ReadWrite", @@ -207441,20 +206810,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileLanguage", "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileLanguage", "Permissions": [ { "Name": "User.ReadWrite", @@ -207469,20 +206838,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileName", "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileName", "Permissions": [ { "Name": "User.ReadWrite", @@ -207497,20 +206866,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileNote", "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileNote", "Permissions": [ { "Name": "User.Read", @@ -207543,20 +206912,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfilePatent", "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfilePatent", "Permissions": [ { "Name": "User.ReadWrite", @@ -207571,20 +206940,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfilePhone", "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfilePhone", "Permissions": [ { "Name": "User.ReadWrite", @@ -207599,20 +206968,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfilePosition", "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfilePosition", "Permissions": [ { "Name": "User.ReadWrite", @@ -207627,20 +206996,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileProject", "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileProject", "Permissions": [ { "Name": "User.ReadWrite", @@ -207655,20 +207024,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfilePublication", "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfilePublication", "Permissions": [ { "Name": "User.ReadWrite", @@ -207683,20 +207052,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileSkill", "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileSkill", "Permissions": [ { "Name": "User.ReadWrite", @@ -207711,20 +207080,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileWebAccount", "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileWebAccount", "Permissions": [ { "Name": "User.ReadWrite", @@ -207739,20 +207108,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserProfileWebsite", "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "People", + "Command": "Update-MgUserProfileWebsite", "Permissions": [ { "Name": "User.ReadWrite", @@ -207767,50 +207136,50 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "People" }, { - "Command": "Update-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgUserScopedRoleMemberOf", "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Identity.DirectoryManagement", + "Command": "Update-MgUserScopedRoleMemberOf", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Identity.DirectoryManagement" }, { - "Command": "Update-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSetting", "Permissions": [ { "Name": "User.ReadWrite", @@ -207825,20 +207194,20 @@ "IsAdmin": true } ], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserSetting", "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSetting", "Permissions": [ { "Name": "User.ReadWrite", @@ -207853,403 +207222,403 @@ "IsAdmin": true } ], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserSettingItemInsight", "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSettingItemInsight", "Permissions": { "Name": "User.ReadWrite", "Description": "Read and update your profile", "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserSettingRegionalAndLanguageSetting", "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSettingRegionalAndLanguageSetting", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSettingShiftPreference", "Permissions": { "Name": "User.ReadWrite.All", "Description": "Read and write all users' full profiles", "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserSettingShiftPreference", "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserSettingShiftPreference", "Permissions": { "Name": "User.ReadWrite.All", "Description": "Read and write all users' full profiles", "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", "IsAdmin": true }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserTeamwork", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserTeamwork", "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserTeamwork", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserTeamworkInstalledApp", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserTeamworkInstalledApp", "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Teams", + "Command": "Update-MgUserTeamworkInstalledApp", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Teams" }, { - "Command": "Update-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoList", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoList", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTask", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTask", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTaskExtension", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTaskExtension", "Permissions": [], - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgUserTodoListTaskLinkedResource", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", "Method": "PATCH", - "Module": "Users", + "Command": "Update-MgUserTodoListTaskLinkedResource", "Permissions": { "Name": "Tasks.ReadWrite", "Description": "Create, read, update, and delete your tasks and task lists", "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", "IsAdmin": false }, - "ApiVersion": "v1.0", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "Users" }, { - "Command": "Update-MgWindowsUpdatesDeployment", "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "WindowsUpdates", + "Command": "Update-MgWindowsUpdatesDeployment", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Update-MgWindowsUpdatesDeploymentAudience", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudience", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Update-MgWindowsUpdatesDeploymentAudience", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Update-MgWindowsUpdatesDeploymentAudienceById", "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudienceById", + "ApiVersion": "beta", "Method": "POST", - "Module": "WindowsUpdates", + "Command": "Update-MgWindowsUpdatesDeploymentAudienceById", "Permissions": { "Name": "WindowsUpdates.ReadWrite.All", "Description": "Read and write all Windows update deployment settings", "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", "IsAdmin": true }, - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" }, { - "Command": "Update-MgWindowsUpdatesUpdatableAsset", "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Method": "PATCH", - "Module": "WindowsUpdates", + "Command": "Update-MgWindowsUpdatesUpdatableAsset", "Permissions": [], - "ApiVersion": "beta", - "OutputType": null, "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ] + ], + "OutputType": null, + "Module": "WindowsUpdates" } ]