exports/ProxyCmdletDefinitions.ps1
# ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get audioRoutingGroups from communications .Description Get audioRoutingGroups from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup #> function Get-MgCommunicationCallAudioRoutingGroup { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: audioRoutingGroup-id of audioRoutingGroup ${AudioRoutingGroupId}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallAudioRoutingGroup_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallAudioRoutingGroup_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallAudioRoutingGroup_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get operations from communications .Description Get operations from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation #> function Get-MgCommunicationCallOperation { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: commsOperation-id of commsOperation ${CommsOperationId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallOperation_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallOperation_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallOperation_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get participants from communications .Description Get participants from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant #> function Get-MgCommunicationCallParticipant { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: participant-id of participant ${ParticipantId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallParticipant_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallParticipant_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallParticipant_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get segments from communications .Description Get segments from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegment #> function Get-MgCommunicationCallRecordSessionSegment { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: segment-id of segment ${SegmentId}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: session-id of session ${SessionId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSessionSegment_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSessionSegment_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSessionSegment_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get sessions from communications .Description Get sessions from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession #> function Get-MgCommunicationCallRecordSession { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: session-id of session ${SessionId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSession_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSession_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecordSession_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get callRecords from communications .Description Get callRecords from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord #> function Get-MgCommunicationCallRecord { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecord_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecord_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCallRecord_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get calls from communications .Description Get calls from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall #> function Get-MgCommunicationCall { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCall_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCall_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCall_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get communications .Description Get communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCloudCommunications .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcloudcommunication #> function Get-MgCommunicationCloudCommunication { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCloudCommunications])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationCloudCommunication_Get'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Get onlineMeetings from communications .Description Get onlineMeetings from communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting #> function Get-MgCommunicationOnlineMeeting { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: onlineMeeting-id of onlineMeeting ${OnlineMeetingId}, [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Alias('Expand')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Expand related entities ${ExpandProperty}, [Parameter()] [Alias('Select')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Select properties to be returned ${Property}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Management.Automation.SwitchParameter] # Include count of items ${Count}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Filter items by property values ${Filter}, [Parameter(ParameterSetName='List')] [Alias('Top', 'Limit')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Show only the first n items ${PageSize}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String] # Search items by search phrases ${Search}, [Parameter(ParameterSetName='List')] [Microsoft.Graph.PowerShell.Category('Query')] [System.Int32] # Skip the first n items ${Skip}, [Parameter(ParameterSetName='List')] [Alias('OrderBy')] [Microsoft.Graph.PowerShell.Category('Query')] [System.String[]] # Order items by property values ${Sort}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationOnlineMeeting_Get'; GetViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationOnlineMeeting_GetViaIdentity'; List = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationOnlineMeeting_List'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action getPresencesByUserId .Description Invoke action getPresencesByUserId .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.IPaths10WpgkzCommunicationsMicrosoftGraphGetpresencesbyuseridPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPresence .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths10WpgkzCommunicationsMicrosoftGraphGetpresencesbyuseridPostRequestbodyContentApplicationJsonSchema>: . [Ids <String[]>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence #> function Get-MgCommunicationPresence { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPresence])] [CmdletBinding(DefaultParameterSetName='GetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Get', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths10WpgkzCommunicationsMicrosoftGraphGetpresencesbyuseridPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='GetExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Ids}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationPresence_Get'; GetExpanded = 'Microsoft.Graph.CloudCommunications.private\Get-MgCommunicationPresence_GetExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action answer .Description Invoke action answer .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsQvpqn4CommunicationsCallsCallIdMicrosoftGraphAnswerPostRequestbodyContentApplicationJsonSchema .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsQvpqn4CommunicationsCallsCallIdMicrosoftGraphAnswerPostRequestbodyContentApplicationJsonSchema>: . [AcceptedModalities <String[]>]: [CallbackUri <String>]: [MediaConfigRemoveFromDefaultAudioGroup <Boolean?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall #> function Invoke-MgAnswerCommunicationCall { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='AnswerExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Answer', Mandatory)] [Parameter(ParameterSetName='AnswerExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='AnswerViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='AnswerViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Answer', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='AnswerViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsQvpqn4CommunicationsCallsCallIdMicrosoftGraphAnswerPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='AnswerExpanded')] [Parameter(ParameterSetName='AnswerViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${AcceptedModalities}, [Parameter(ParameterSetName='AnswerExpanded')] [Parameter(ParameterSetName='AnswerViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallbackUri}, [Parameter(ParameterSetName='AnswerExpanded')] [Parameter(ParameterSetName='AnswerViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MediaConfigRemoveFromDefaultAudioGroup}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Answer = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgAnswerCommunicationCall_Answer'; AnswerExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgAnswerCommunicationCall_AnswerExpanded'; AnswerViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgAnswerCommunicationCall_AnswerViaIdentity'; AnswerViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgAnswerCommunicationCall_AnswerViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action invite .Description Invoke action invite .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths1Bh76WaCommunicationsCallsCallIdParticipantsMicrosoftGraphInvitePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInviteParticipantsOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths1Bh76WaCommunicationsCallsCallIdParticipantsMicrosoftGraphInvitePostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: [Participants <IMicrosoftGraphInvitationParticipantInfo[]>]: [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session PARTICIPANTS <IMicrosoftGraphInvitationParticipantInfo[]>: . [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant #> function Invoke-MgInviteCommunicationCallParticipant { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInviteParticipantsOperation])] [CmdletBinding(DefaultParameterSetName='InviteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Invite', Mandatory)] [Parameter(ParameterSetName='InviteExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='InviteViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='InviteViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Invite', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='InviteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths1Bh76WaCommunicationsCallsCallIdParticipantsMicrosoftGraphInvitePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='InviteExpanded')] [Parameter(ParameterSetName='InviteViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='InviteExpanded')] [Parameter(ParameterSetName='InviteViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInvitationParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ${Participants}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Invite = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgInviteCommunicationCallParticipant_Invite'; InviteExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgInviteCommunicationCallParticipant_InviteExpanded'; InviteViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgInviteCommunicationCallParticipant_InviteViaIdentity'; InviteViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgInviteCommunicationCallParticipant_InviteViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action keepAlive .Description Invoke action keepAlive .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive #> function Invoke-MgKeepCommunicationCallAlive { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='Keep', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Keep', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='KeepViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Keep = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgKeepCommunicationCallAlive_Keep'; KeepViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgKeepCommunicationCallAlive_KeepViaIdentity'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action muteAll .Description Invoke action muteAll .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsKpvac3CommunicationsCallsCallIdParticipantsMicrosoftGraphMuteallPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantsOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsKpvac3CommunicationsCallsCallIdParticipantsMicrosoftGraphMuteallPostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: [Participants <String[]>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmuteallcommunicationcallparticipant #> function Invoke-MgMuteAllCommunicationCallParticipant { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantsOperation])] [CmdletBinding(DefaultParameterSetName='MuteExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Mute1', Mandatory)] [Parameter(ParameterSetName='MuteExpanded1', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='MuteViaIdentity1', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentityExpanded1', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Mute1', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentity1', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsKpvac3CommunicationsCallsCallIdParticipantsMicrosoftGraphMuteallPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='MuteExpanded1')] [Parameter(ParameterSetName='MuteViaIdentityExpanded1')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='MuteExpanded1')] [Parameter(ParameterSetName='MuteViaIdentityExpanded1')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Participants}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Mute1 = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteAllCommunicationCallParticipant_Mute1'; MuteExpanded1 = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteAllCommunicationCallParticipant_MuteExpanded1'; MuteViaIdentity1 = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteAllCommunicationCallParticipant_MuteViaIdentity1'; MuteViaIdentityExpanded1 = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteAllCommunicationCallParticipant_MuteViaIdentityExpanded1'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action mute .Description Invoke action mute .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsTobgxoCommunicationsCallsCallIdParticipantsParticipantIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsTobgxoCommunicationsCallsCallIdParticipantsParticipantIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant #> function Invoke-MgMuteCommunicationCallParticipant { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantOperation])] [CmdletBinding(DefaultParameterSetName='MuteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Mute', Mandatory)] [Parameter(ParameterSetName='MuteExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='Mute', Mandatory)] [Parameter(ParameterSetName='MuteExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: participant-id of participant ${ParticipantId}, [Parameter(ParameterSetName='MuteViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Mute', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsTobgxoCommunicationsCallsCallIdParticipantsParticipantIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='MuteExpanded')] [Parameter(ParameterSetName='MuteViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Mute = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCallParticipant_Mute'; MuteExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCallParticipant_MuteExpanded'; MuteViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCallParticipant_MuteViaIdentity'; MuteViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCallParticipant_MuteViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action mute .Description Invoke action mute .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths13Zt223CommunicationsCallsCallIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths13Zt223CommunicationsCallsCallIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall #> function Invoke-MgMuteCommunicationCall { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMuteParticipantOperation])] [CmdletBinding(DefaultParameterSetName='MuteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Mute', Mandatory)] [Parameter(ParameterSetName='MuteExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='MuteViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Mute', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='MuteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths13Zt223CommunicationsCallsCallIdMicrosoftGraphMutePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='MuteExpanded')] [Parameter(ParameterSetName='MuteViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Mute = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCall_Mute'; MuteExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCall_MuteExpanded'; MuteViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCall_MuteViaIdentity'; MuteViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgMuteCommunicationCall_MuteViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action playPrompt .Description Invoke action playPrompt .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths1Gzqcv2CommunicationsCallsCallIdMicrosoftGraphPlaypromptPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPlayPromptOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths1Gzqcv2CommunicationsCallsCallIdMicrosoftGraphPlaypromptPostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: [Loop <Boolean?>]: [Prompts <IMicrosoftGraphPrompt[]>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt #> function Invoke-MgPlayCommunicationCallPrompt { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPlayPromptOperation])] [CmdletBinding(DefaultParameterSetName='PlayExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Play', Mandatory)] [Parameter(ParameterSetName='PlayExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='PlayViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='PlayViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Play', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='PlayViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths1Gzqcv2CommunicationsCallsCallIdMicrosoftGraphPlaypromptPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='PlayExpanded')] [Parameter(ParameterSetName='PlayViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='PlayExpanded')] [Parameter(ParameterSetName='PlayViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${Loop}, [Parameter(ParameterSetName='PlayExpanded')] [Parameter(ParameterSetName='PlayViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[]] # . ${Prompts}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Play = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgPlayCommunicationCallPrompt_Play'; PlayExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgPlayCommunicationCallPrompt_PlayExpanded'; PlayViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgPlayCommunicationCallPrompt_PlayViaIdentity'; PlayViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgPlayCommunicationCallPrompt_PlayViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action recordResponse .Description Invoke action recordResponse .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths14Wb7KqCommunicationsCallsCallIdMicrosoftGraphRecordresponsePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphRecordOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths14Wb7KqCommunicationsCallsCallIdMicrosoftGraphRecordresponsePostRequestbodyContentApplicationJsonSchema>: . [BargeInAllowed <Boolean?>]: [ClientContext <String>]: [InitialSilenceTimeoutInSeconds <Int32?>]: [MaxRecordDurationInSeconds <Int32?>]: [MaxSilenceTimeoutInSeconds <Int32?>]: [PlayBeep <Boolean?>]: [Prompts <IMicrosoftGraphPrompt[]>]: [StopTones <String[]>]: [StreamWhileRecording <Boolean?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse #> function Invoke-MgRecordCommunicationCallResponse { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphRecordOperation])] [CmdletBinding(DefaultParameterSetName='RecordExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Record', Mandatory)] [Parameter(ParameterSetName='RecordExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='RecordViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RecordViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Record', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RecordViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths14Wb7KqCommunicationsCallsCallIdMicrosoftGraphRecordresponsePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${BargeInAllowed}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${InitialSilenceTimeoutInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${MaxRecordDurationInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${MaxSilenceTimeoutInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${PlayBeep}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[]] # . ${Prompts}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${StopTones}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${StreamWhileRecording}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Record = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCallResponse_Record'; RecordExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCallResponse_RecordExpanded'; RecordViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCallResponse_RecordViaIdentity'; RecordViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCallResponse_RecordViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action record .Description Invoke action record .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths1Mdqe66CommunicationsCallsCallIdMicrosoftGraphRecordPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphRecordOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths1Mdqe66CommunicationsCallsCallIdMicrosoftGraphRecordPostRequestbodyContentApplicationJsonSchema>: . [BargeInAllowed <Boolean?>]: [ClientContext <String>]: [InitialSilenceTimeoutInSeconds <Int32?>]: [MaxRecordDurationInSeconds <Int32?>]: [MaxSilenceTimeoutInSeconds <Int32?>]: [PlayBeep <Boolean?>]: [Prompts <IMicrosoftGraphPrompt[]>]: [StopTones <String[]>]: [StreamWhileRecording <Boolean?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcall #> function Invoke-MgRecordCommunicationCall { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphRecordOperation])] [CmdletBinding(DefaultParameterSetName='RecordExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Record', Mandatory)] [Parameter(ParameterSetName='RecordExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='RecordViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RecordViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Record', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RecordViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths1Mdqe66CommunicationsCallsCallIdMicrosoftGraphRecordPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${BargeInAllowed}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${InitialSilenceTimeoutInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${MaxRecordDurationInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${MaxSilenceTimeoutInSeconds}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${PlayBeep}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPrompt[]] # . ${Prompts}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${StopTones}, [Parameter(ParameterSetName='RecordExpanded')] [Parameter(ParameterSetName='RecordViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${StreamWhileRecording}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Record = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCall_Record'; RecordExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCall_RecordExpanded'; RecordViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCall_RecordViaIdentity'; RecordViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRecordCommunicationCall_RecordViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action redirect .Description Invoke action redirect .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths183Gi8UCommunicationsCallsCallIdMicrosoftGraphRedirectPostRequestbodyContentApplicationJsonSchema .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths183Gi8UCommunicationsCallsCallIdMicrosoftGraphRedirectPostRequestbodyContentApplicationJsonSchema>: . [CallbackUri <String>]: [MaskCallee <Boolean?>]: [MaskCaller <Boolean?>]: [TargetDisposition <String>]: callDisposition [Targets <IMicrosoftGraphInvitationParticipantInfo[]>]: [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. [Timeout <Int32?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session TARGETS <IMicrosoftGraphInvitationParticipantInfo[]>: . [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall #> function Invoke-MgRedirectCommunicationCall { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='RedirectExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Redirect', Mandatory)] [Parameter(ParameterSetName='RedirectExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='RedirectViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RedirectViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Redirect', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RedirectViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths183Gi8UCommunicationsCallsCallIdMicrosoftGraphRedirectPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallbackUri}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MaskCallee}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MaskCaller}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callDisposition ${TargetDisposition}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInvitationParticipantInfo[]] # . # To construct, see NOTES section for TARGETS properties and create a hash table. ${Targets}, [Parameter(ParameterSetName='RedirectExpanded')] [Parameter(ParameterSetName='RedirectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${Timeout}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Redirect = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRedirectCommunicationCall_Redirect'; RedirectExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRedirectCommunicationCall_RedirectExpanded'; RedirectViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRedirectCommunicationCall_RedirectViaIdentity'; RedirectViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRedirectCommunicationCall_RedirectViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action reject .Description Invoke action reject .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths4QrghdCommunicationsCallsCallIdMicrosoftGraphRejectPostRequestbodyContentApplicationJsonSchema .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths4QrghdCommunicationsCallsCallIdMicrosoftGraphRejectPostRequestbodyContentApplicationJsonSchema>: . [CallbackUri <String>]: [Reason <String>]: rejectReason INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall #> function Invoke-MgRejectCommunicationCall { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='RejectExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Reject', Mandatory)] [Parameter(ParameterSetName='RejectExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='RejectViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RejectViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Reject', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='RejectViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths4QrghdCommunicationsCallsCallIdMicrosoftGraphRejectPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='RejectExpanded')] [Parameter(ParameterSetName='RejectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallbackUri}, [Parameter(ParameterSetName='RejectExpanded')] [Parameter(ParameterSetName='RejectViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # rejectReason ${Reason}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Reject = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRejectCommunicationCall_Reject'; RejectExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRejectCommunicationCall_RejectExpanded'; RejectViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRejectCommunicationCall_RejectViaIdentity'; RejectViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgRejectCommunicationCall_RejectViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action subscribeToTone .Description Invoke action subscribeToTone .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsXyl6WiCommunicationsCallsCallIdMicrosoftGraphSubscribetotonePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribeToToneOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsXyl6WiCommunicationsCallsCallIdMicrosoftGraphSubscribetotonePostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone #> function Invoke-MgSubscribeCommunicationCallToTone { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribeToToneOperation])] [CmdletBinding(DefaultParameterSetName='SubscribeExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Subscribe', Mandatory)] [Parameter(ParameterSetName='SubscribeExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='SubscribeViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='SubscribeViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Subscribe', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='SubscribeViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsXyl6WiCommunicationsCallsCallIdMicrosoftGraphSubscribetotonePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='SubscribeExpanded')] [Parameter(ParameterSetName='SubscribeViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Subscribe = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgSubscribeCommunicationCallToTone_Subscribe'; SubscribeExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgSubscribeCommunicationCallToTone_SubscribeExpanded'; SubscribeViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgSubscribeCommunicationCallToTone_SubscribeViaIdentity'; SubscribeViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgSubscribeCommunicationCallToTone_SubscribeViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action unmute .Description Invoke action unmute .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths1X7BvttCommunicationsCallsCallIdMicrosoftGraphUnmutePostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphUnmuteParticipantOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths1X7BvttCommunicationsCallsCallIdMicrosoftGraphUnmutePostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall #> function Invoke-MgUnmuteCommunicationCall { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphUnmuteParticipantOperation])] [CmdletBinding(DefaultParameterSetName='UnmuteExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Unmute', Mandatory)] [Parameter(ParameterSetName='UnmuteExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='UnmuteViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UnmuteViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Unmute', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UnmuteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths1X7BvttCommunicationsCallsCallIdMicrosoftGraphUnmutePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UnmuteExpanded')] [Parameter(ParameterSetName='UnmuteViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Unmute = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgUnmuteCommunicationCall_Unmute'; UnmuteExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgUnmuteCommunicationCall_UnmuteExpanded'; UnmuteViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgUnmuteCommunicationCall_UnmuteViaIdentity'; UnmuteViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Invoke-MgUnmuteCommunicationCall_UnmuteViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action transfer .Description Invoke action transfer .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPaths4Zbm7LCommunicationsCallsCallIdMicrosoftGraphTransferPostRequestbodyContentApplicationJsonSchema .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPaths4Zbm7LCommunicationsCallsCallIdMicrosoftGraphTransferPostRequestbodyContentApplicationJsonSchema>: . [TransferTargetEndpointType <String>]: endpointType [TransferTargetIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [TransferTargetReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session TRANSFERTARGETIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall #> function Move-MgCommunicationCall { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='TransferExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Transfer', Mandatory)] [Parameter(ParameterSetName='TransferExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='TransferViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='TransferViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Transfer', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='TransferViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPaths4Zbm7LCommunicationsCallsCallIdMicrosoftGraphTransferPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='TransferExpanded')] [Parameter(ParameterSetName='TransferViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${TransferTargetEndpointType}, [Parameter(ParameterSetName='TransferExpanded')] [Parameter(ParameterSetName='TransferViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for TRANSFERTARGETIDENTITY properties and create a hash table. ${TransferTargetIdentity}, [Parameter(ParameterSetName='TransferExpanded')] [Parameter(ParameterSetName='TransferViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Optional. # The call which the target identity is currently a part of. # This call will be dropped once the participant is added. ${TransferTargetReplacesCallId}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Transfer = 'Microsoft.Graph.CloudCommunications.private\Move-MgCommunicationCall_Transfer'; TransferExpanded = 'Microsoft.Graph.CloudCommunications.private\Move-MgCommunicationCall_TransferExpanded'; TransferViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Move-MgCommunicationCall_TransferViaIdentity'; TransferViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Move-MgCommunicationCall_TransferViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to audioRoutingGroups for communications .Description Create new navigation property to audioRoutingGroups for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphAudioRoutingGroup>: audioRoutingGroup [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup #> function New-MgCommunicationCallAudioRoutingGroup { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup] # audioRoutingGroup # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Receivers}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # routingMode ${RoutingMode}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Sources}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallAudioRoutingGroup_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallAudioRoutingGroup_CreateExpanded'; CreateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallAudioRoutingGroup_CreateViaIdentity'; CreateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallAudioRoutingGroup_CreateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to operations for communications .Description Create new navigation property to operations for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCommsOperation>: commsOperation [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation #> function New-MgCommunicationCallOperation { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation] # commsOperation # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Unique Client Context string. # Max limit is 256 chars. ${ClientContext}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoCode}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ResultInfoMessage}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoSubcode}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # operationStatus ${Status}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallOperation_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallOperation_CreateExpanded'; CreateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallOperation_CreateViaIdentity'; CreateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallOperation_CreateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to participants for communications .Description Create new navigation property to participants for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphParticipant>: participant [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus INFOIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INITIATEDBYIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session MEDIASTREAMS <IMicrosoftGraphMediaStream[]>: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. RECORDINGINFOINITIATOR <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant #> function New-MgCommunicationCallParticipant { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant] # participant # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${InfoCountryCode}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${InfoEndpointType}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INFOIDENTITY properties and create a hash table. ${InfoIdentity}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${InfoLanguageId}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${InfoRegion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${InitiatedByCountryCode}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${InitiatedByEndpointType}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INITIATEDBYIDENTITY properties and create a hash table. ${InitiatedByIdentity}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${InitiatedByLanguageId}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${InitiatedByRegion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # true if the participant is in lobby. ${IsInLobby}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # true if the participant is muted (client or server muted). ${IsMuted}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMediaStream[]] # The list of media streams. # To construct, see NOTES section for MEDIASTREAMS properties and create a hash table. ${MediaStreams}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${Metadata}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for RECORDINGINFOINITIATOR properties and create a hash table. ${RecordingInfoInitiator}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # recordingStatus ${RecordingInfoRecordingStatus}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallParticipant_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallParticipant_CreateExpanded'; CreateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallParticipant_CreateViaIdentity'; CreateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallParticipant_CreateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to segments for communications .Description Create new navigation property to segments for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsSegment>: segment [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session MEDIA <IMicrosoftGraphCallRecordsMedia[]>: . [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsessionsegment #> function New-MgCommunicationCallRecordSessionSegment { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: session-id of session ${SessionId}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment] # segment # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentApplicationVersion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentHeaderValue}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentApplicationVersion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentHeaderValue}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${FailureInfoReason}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # failureStage ${FailureInfoStage}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsMedia[]] # . # To construct, see NOTES section for MEDIA properties and create a hash table. ${Media}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSessionSegment_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSessionSegment_CreateExpanded'; CreateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSessionSegment_CreateViaIdentity'; CreateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSessionSegment_CreateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to sessions for communications .Description Create new navigation property to sessions for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsSession>: session [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session SEGMENTS <IMicrosoftGraphCallRecordsSegment[]>: . [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession #> function New-MgCommunicationCallRecordSession { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession] # session # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentApplicationVersion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentHeaderValue}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentApplicationVersion}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentHeaderValue}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${FailureInfoReason}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # failureStage ${FailureInfoStage}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Modalities}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment[]] # . # To construct, see NOTES section for SEGMENTS properties and create a hash table. ${Segments}, [Parameter(ParameterSetName='CreateExpanded')] [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSession_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSession_CreateExpanded'; CreateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSession_CreateViaIdentity'; CreateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecordSession_CreateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to callRecords for communications .Description Create new navigation property to callRecords for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsCallRecord>: callRecord [Id <String>]: Read-only. [EndDateTime <DateTime?>]: [JoinWebUrl <String>]: [LastModifiedDateTime <DateTime?>]: [Modalities <String[]>]: [Organizer <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Participants <IMicrosoftGraphIdentitySet[]>]: [Sessions <IMicrosoftGraphCallRecordsSession[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [Type <String>]: callType [Version <Int64?>]: ORGANIZER <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity PARTICIPANTS <IMicrosoftGraphIdentitySet[]>: . [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity SESSIONS <IMicrosoftGraphCallRecordsSession[]>: . [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecord #> function New-MgCommunicationCallRecord { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord] # callRecord # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${JoinWebUrl}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${LastModifiedDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Modalities}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ORGANIZER properties and create a hash table. ${Organizer}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet[]] # . # To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ${Participants}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession[]] # . # To construct, see NOTES section for SESSIONS properties and create a hash table. ${Sessions}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callType ${Type}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int64] # . ${Version}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecord_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCallRecord_CreateExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to calls for communications .Description Create new navigation property to calls for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. ANSWEREDBYIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity AUDIOROUTINGGROUPS <IMicrosoftGraphAudioRoutingGroup[]>: . [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: BODYPARAMETER <IMicrosoftGraphCall>: call [Id <String>]: Read-only. [ActiveModalities <String[]>]: [AnsweredByCountryCode <String>]: [AnsweredByEndpointType <String>]: endpointType [AnsweredByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [AnsweredByLanguageId <String>]: The language culture string. Read-only. [AnsweredByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [AudioRoutingGroups <IMicrosoftGraphAudioRoutingGroup[]>]: [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: [CallOptions <IMicrosoftGraphCallOptions>]: callOptions [CallRoutes <IMicrosoftGraphCallRoute[]>]: [Final <IMicrosoftGraphIdentitySet>]: identitySet [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType [CallbackUri <String>]: The callback URL on which callbacks will be delivered. Must be https. [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [Direction <String>]: callDirection [IncomingContextObservedParticipantId <String>]: [IncomingContextOnBehalfOf <IMicrosoftGraphIdentitySet>]: identitySet [IncomingContextSourceParticipantId <String>]: [IncomingContextTransferor <IMicrosoftGraphIdentitySet>]: identitySet [MediaConfigRemoveFromDefaultAudioGroup <Boolean?>]: [MediaStateAudio <String>]: mediaState [MeetingCapabilityAllowAnonymousUsersToDialOut <Boolean?>]: [MeetingCapabilityAllowAnonymousUsersToStartMeeting <Boolean?>]: [MeetingCapabilityAutoAdmittedUsers <String>]: autoAdmittedUsersType [MeetingInfoAllowConversationWithoutHost <Boolean?>]: [MyParticipantId <String>]: Read-only. [Operations <IMicrosoftGraphCommsOperation[]>]: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus [Participants <IMicrosoftGraphParticipant[]>]: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus [RequestedModalities <String[]>]: The list of requested modalities. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [RingingTimeoutInSeconds <Int32?>]: [RoutingPolicies <String[]>]: [SourceCountryCode <String>]: [SourceEndpointType <String>]: endpointType [SourceIdentity <IMicrosoftGraphIdentitySet>]: identitySet [SourceLanguageId <String>]: The language culture string. Read-only. [SourceRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [State <String>]: callState [Subject <String>]: The subject of the conversation. [Targets <IMicrosoftGraphInvitationParticipantInfo[]>]: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. [TenantId <String>]: [TerminationReason <String>]: [ToneInfoSequenceId <Int64?>]: An incremental identifier used for ordering DTMF events. [ToneInfoTone <String>]: tone CALLROUTES <IMicrosoftGraphCallRoute[]>: . [Final <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType INCOMINGCONTEXTONBEHALFOF <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INCOMINGCONTEXTTRANSFEROR <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity OPERATIONS <IMicrosoftGraphCommsOperation[]>: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus PARTICIPANTS <IMicrosoftGraphParticipant[]>: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus SOURCEIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity TARGETS <IMicrosoftGraphInvitationParticipantInfo[]>: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall #> function New-MgCommunicationCall { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall] # call # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${ActiveModalities}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${AnsweredByCountryCode}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${AnsweredByEndpointType}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ANSWEREDBYIDENTITY properties and create a hash table. ${AnsweredByIdentity}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${AnsweredByLanguageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${AnsweredByRegion}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup[]] # . # To construct, see NOTES section for AUDIOROUTINGGROUPS properties and create a hash table. ${AudioRoutingGroups}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallOptions] # callOptions ${CallOptions}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRoute[]] # . # To construct, see NOTES section for CALLROUTES properties and create a hash table. ${CallRoutes}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The callback URL on which callbacks will be delivered. # Must be https. ${CallbackUri}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier of a message in a Microsoft Teams channel. ${ChatInfoMessageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The ID of the reply message. ${ChatInfoReplyChainMessageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier for a thread in Microsoft Teams. ${ChatInfoThreadId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callDirection ${Direction}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${IncomingContextObservedParticipantId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INCOMINGCONTEXTONBEHALFOF properties and create a hash table. ${IncomingContextOnBehalfOf}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${IncomingContextSourceParticipantId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INCOMINGCONTEXTTRANSFEROR properties and create a hash table. ${IncomingContextTransferor}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MediaConfigRemoveFromDefaultAudioGroup}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # mediaState ${MediaStateAudio}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingCapabilityAllowAnonymousUsersToDialOut}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingCapabilityAllowAnonymousUsersToStartMeeting}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # autoAdmittedUsersType ${MeetingCapabilityAutoAdmittedUsers}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingInfoAllowConversationWithoutHost}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${MyParticipantId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation[]] # Read-only. # Nullable. # To construct, see NOTES section for OPERATIONS properties and create a hash table. ${Operations}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant[]] # Read-only. # Nullable. # To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ${Participants}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # The list of requested modalities. ${RequestedModalities}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoCode}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ResultInfoMessage}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoSubcode}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${RingingTimeoutInSeconds}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${RoutingPolicies}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${SourceCountryCode}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${SourceEndpointType}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for SOURCEIDENTITY properties and create a hash table. ${SourceIdentity}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${SourceLanguageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${SourceRegion}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callState ${State}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The subject of the conversation. ${Subject}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInvitationParticipantInfo[]] # The targets of the call. # Required information for creating peer to peer call. # To construct, see NOTES section for TARGETS properties and create a hash table. ${Targets}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${TenantId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${TerminationReason}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int64] # An incremental identifier used for ordering DTMF events. ${ToneInfoSequenceId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # tone ${ToneInfoTone}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCall_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationCall_CreateExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Create new navigation property to onlineMeetings for communications .Description Create new navigation property to onlineMeetings for communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphOnlineMeeting>: onlineMeeting [Id <String>]: Read-only. [AccessLevel <String>]: accessLevel [AudioConferencingConferenceId <String>]: [AudioConferencingDialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [AudioConferencingTollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [AudioConferencingTollNumber <String>]: The toll number that connects to the Audio Conference Provider. [CanceledDateTime <DateTime?>]: [Capabilities <String[]>]: [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [CreationDateTime <DateTime?>]: The meeting creation time in UTC. Read-only. [EndDateTime <DateTime?>]: The meeting end time in UTC. [EntryExitAnnouncement <Boolean?>]: [ExpirationDateTime <DateTime?>]: [IsBroadcast <Boolean?>]: [IsCancelled <Boolean?>]: [JoinUrl <String>]: [OrganizerIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [OrganizerUpn <String>]: User principal name of the participant. [ParticipantAttendees <IMicrosoftGraphMeetingParticipantInfo[]>]: [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Upn <String>]: User principal name of the participant. [ParticipantContributors <IMicrosoftGraphMeetingParticipantInfo[]>]: [ParticipantProducers <IMicrosoftGraphMeetingParticipantInfo[]>]: [StartDateTime <DateTime?>]: The meeting start time in UTC. [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. ORGANIZERIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity PARTICIPANTATTENDEES <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. PARTICIPANTCONTRIBUTORS <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. PARTICIPANTPRODUCERS <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting #> function New-MgCommunicationOnlineMeeting { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting] # onlineMeeting # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # accessLevel ${AccessLevel}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${AudioConferencingConferenceId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # A URL to the externally-accessible web page that contains dial-in information. ${AudioConferencingDialinUrl}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The toll-free number that connects to the Audio Conference Provider. ${AudioConferencingTollFreeNumber}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The toll number that connects to the Audio Conference Provider. ${AudioConferencingTollNumber}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${CanceledDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Capabilities}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier of a message in a Microsoft Teams channel. ${ChatInfoMessageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The ID of the reply message. ${ChatInfoReplyChainMessageId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier for a thread in Microsoft Teams. ${ChatInfoThreadId}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting creation time in UTC. # Read-only. ${CreationDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting end time in UTC. ${EndDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${EntryExitAnnouncement}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${ExpirationDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${IsBroadcast}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${IsCancelled}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${JoinUrl}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ORGANIZERIDENTITY properties and create a hash table. ${OrganizerIdentity}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # User principal name of the participant. ${OrganizerUpn}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTATTENDEES properties and create a hash table. ${ParticipantAttendees}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTCONTRIBUTORS properties and create a hash table. ${ParticipantContributors}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTPRODUCERS properties and create a hash table. ${ParticipantProducers}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting start time in UTC. ${StartDateTime}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The subject of the online meeting. ${Subject}, [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The video teleconferencing ID. # Read-only. ${VideoTeleconferenceId}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationOnlineMeeting_Create'; CreateExpanded = 'Microsoft.Graph.CloudCommunications.private\New-MgCommunicationOnlineMeeting_CreateExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action changeScreenSharingRole .Description Invoke action changeScreenSharingRole .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsOj95ZpCommunicationsCallsCallIdMicrosoftGraphChangescreensharingrolePostRequestbodyContentApplicationJsonSchema .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsOj95ZpCommunicationsCallsCallIdMicrosoftGraphChangescreensharingrolePostRequestbodyContentApplicationJsonSchema>: . [Role <String>]: screenSharingRole INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole #> function Rename-MgCommunicationCallScreenSharingRole { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ChangeExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Change', Mandatory)] [Parameter(ParameterSetName='ChangeExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='ChangeViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='ChangeViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Change', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='ChangeViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsOj95ZpCommunicationsCallsCallIdMicrosoftGraphChangescreensharingrolePostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='ChangeExpanded')] [Parameter(ParameterSetName='ChangeViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # screenSharingRole ${Role}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Change = 'Microsoft.Graph.CloudCommunications.private\Rename-MgCommunicationCallScreenSharingRole_Change'; ChangeExpanded = 'Microsoft.Graph.CloudCommunications.private\Rename-MgCommunicationCallScreenSharingRole_ChangeExpanded'; ChangeViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Rename-MgCommunicationCallScreenSharingRole_ChangeViaIdentity'; ChangeViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Rename-MgCommunicationCallScreenSharingRole_ChangeViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action cancelMediaProcessing .Description Invoke action cancelMediaProcessing .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsYp37FjCommunicationsCallsCallIdMicrosoftGraphCancelmediaprocessingPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCancelMediaProcessingOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsYp37FjCommunicationsCallsCallIdMicrosoftGraphCancelmediaprocessingPostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing #> function Stop-MgCommunicationCallMediaProcessing { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCancelMediaProcessingOperation])] [CmdletBinding(DefaultParameterSetName='CancelExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Cancel', Mandatory)] [Parameter(ParameterSetName='CancelExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='CancelViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CancelViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Cancel', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CancelViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsYp37FjCommunicationsCallsCallIdMicrosoftGraphCancelmediaprocessingPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='CancelExpanded')] [Parameter(ParameterSetName='CancelViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Cancel = 'Microsoft.Graph.CloudCommunications.private\Stop-MgCommunicationCallMediaProcessing_Cancel'; CancelExpanded = 'Microsoft.Graph.CloudCommunications.private\Stop-MgCommunicationCallMediaProcessing_CancelExpanded'; CancelViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Stop-MgCommunicationCallMediaProcessing_CancelViaIdentity'; CancelViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Stop-MgCommunicationCallMediaProcessing_CancelViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property audioRoutingGroups in communications .Description Update the navigation property audioRoutingGroups in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphAudioRoutingGroup>: audioRoutingGroup [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup #> function Update-MgCommunicationCallAudioRoutingGroup { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: audioRoutingGroup-id of audioRoutingGroup ${AudioRoutingGroupId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup] # audioRoutingGroup # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Receivers}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # routingMode ${RoutingMode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Sources}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallAudioRoutingGroup_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallAudioRoutingGroup_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallAudioRoutingGroup_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallAudioRoutingGroup_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property operations in communications .Description Update the navigation property operations in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCommsOperation>: commsOperation [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation #> function Update-MgCommunicationCallOperation { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: commsOperation-id of commsOperation ${CommsOperationId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation] # commsOperation # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Unique Client Context string. # Max limit is 256 chars. ${ClientContext}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ResultInfoMessage}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoSubcode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # operationStatus ${Status}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallOperation_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallOperation_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallOperation_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallOperation_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property participants in communications .Description Update the navigation property participants in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphParticipant>: participant [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus INFOIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INITIATEDBYIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session MEDIASTREAMS <IMicrosoftGraphMediaStream[]>: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. RECORDINGINFOINITIATOR <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant #> function Update-MgCommunicationCallParticipant { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: participant-id of participant ${ParticipantId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant] # participant # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${InfoCountryCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${InfoEndpointType}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INFOIDENTITY properties and create a hash table. ${InfoIdentity}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${InfoLanguageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${InfoRegion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${InitiatedByCountryCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${InitiatedByEndpointType}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INITIATEDBYIDENTITY properties and create a hash table. ${InitiatedByIdentity}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${InitiatedByLanguageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${InitiatedByRegion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # true if the participant is in lobby. ${IsInLobby}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # true if the participant is muted (client or server muted). ${IsMuted}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMediaStream[]] # The list of media streams. # To construct, see NOTES section for MEDIASTREAMS properties and create a hash table. ${MediaStreams}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${Metadata}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for RECORDINGINFOINITIATOR properties and create a hash table. ${RecordingInfoInitiator}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # recordingStatus ${RecordingInfoRecordingStatus}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallParticipant_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallParticipant_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallParticipant_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallParticipant_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Invoke action updateRecordingStatus .Description Invoke action updateRecordingStatus .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IPathsEipedyCommunicationsCallsCallIdMicrosoftGraphUpdaterecordingstatusPostRequestbodyContentApplicationJsonSchema .Outputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphUpdateRecordingStatusOperation .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IPathsEipedyCommunicationsCallsCallIdMicrosoftGraphUpdaterecordingstatusPostRequestbodyContentApplicationJsonSchema>: . [ClientContext <String>]: [Status <String>]: recordingStatus INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus #> function Update-MgCommunicationCallRecordingStatus { [OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphUpdateRecordingStatusOperation])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IPathsEipedyCommunicationsCallsCallIdMicrosoftGraphUpdaterecordingstatusPostRequestbodyContentApplicationJsonSchema] # . # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ClientContext}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # recordingStatus ${Status}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordingStatus_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordingStatus_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordingStatus_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordingStatus_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property segments in communications .Description Update the navigation property segments in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsSegment>: segment [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session MEDIA <IMicrosoftGraphCallRecordsMedia[]>: . [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsessionsegment #> function Update-MgCommunicationCallRecordSessionSegment { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: segment-id of segment ${SegmentId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: session-id of session ${SessionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment] # segment # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentApplicationVersion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentHeaderValue}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentApplicationVersion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentHeaderValue}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${FailureInfoReason}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # failureStage ${FailureInfoStage}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsMedia[]] # . # To construct, see NOTES section for MEDIA properties and create a hash table. ${Media}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSessionSegment_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSessionSegment_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSessionSegment_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSessionSegment_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property sessions in communications .Description Update the navigation property sessions in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsSession>: session [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session SEGMENTS <IMicrosoftGraphCallRecordsSegment[]>: . [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession #> function Update-MgCommunicationCallRecordSession { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: session-id of session ${SessionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession] # session # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentApplicationVersion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CalleeUserAgentHeaderValue}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentApplicationVersion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${CallerUserAgentHeaderValue}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${FailureInfoReason}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # failureStage ${FailureInfoStage}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Modalities}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSegment[]] # . # To construct, see NOTES section for SEGMENTS properties and create a hash table. ${Segments}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSession_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSession_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSession_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecordSession_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property callRecords in communications .Description Update the navigation property callRecords in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCallRecordsCallRecord>: callRecord [Id <String>]: Read-only. [EndDateTime <DateTime?>]: [JoinWebUrl <String>]: [LastModifiedDateTime <DateTime?>]: [Modalities <String[]>]: [Organizer <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Participants <IMicrosoftGraphIdentitySet[]>]: [Sessions <IMicrosoftGraphCallRecordsSession[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [Type <String>]: callType [Version <Int64?>]: INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session ORGANIZER <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity PARTICIPANTS <IMicrosoftGraphIdentitySet[]>: . [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity SESSIONS <IMicrosoftGraphCallRecordsSession[]>: . [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecord #> function Update-MgCommunicationCallRecord { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: callRecord-id of callRecord ${CallRecordId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord] # callRecord # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${EndDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${JoinWebUrl}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${LastModifiedDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Modalities}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ORGANIZER properties and create a hash table. ${Organizer}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet[]] # . # To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ${Participants}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsSession[]] # . # To construct, see NOTES section for SESSIONS properties and create a hash table. ${Sessions}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${StartDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callType ${Type}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int64] # . ${Version}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecord_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecord_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecord_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCallRecord_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property calls in communications .Description Update the navigation property calls in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. ANSWEREDBYIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity AUDIOROUTINGGROUPS <IMicrosoftGraphAudioRoutingGroup[]>: . [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: BODYPARAMETER <IMicrosoftGraphCall>: call [Id <String>]: Read-only. [ActiveModalities <String[]>]: [AnsweredByCountryCode <String>]: [AnsweredByEndpointType <String>]: endpointType [AnsweredByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [AnsweredByLanguageId <String>]: The language culture string. Read-only. [AnsweredByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [AudioRoutingGroups <IMicrosoftGraphAudioRoutingGroup[]>]: [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: [CallOptions <IMicrosoftGraphCallOptions>]: callOptions [CallRoutes <IMicrosoftGraphCallRoute[]>]: [Final <IMicrosoftGraphIdentitySet>]: identitySet [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType [CallbackUri <String>]: The callback URL on which callbacks will be delivered. Must be https. [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [Direction <String>]: callDirection [IncomingContextObservedParticipantId <String>]: [IncomingContextOnBehalfOf <IMicrosoftGraphIdentitySet>]: identitySet [IncomingContextSourceParticipantId <String>]: [IncomingContextTransferor <IMicrosoftGraphIdentitySet>]: identitySet [MediaConfigRemoveFromDefaultAudioGroup <Boolean?>]: [MediaStateAudio <String>]: mediaState [MeetingCapabilityAllowAnonymousUsersToDialOut <Boolean?>]: [MeetingCapabilityAllowAnonymousUsersToStartMeeting <Boolean?>]: [MeetingCapabilityAutoAdmittedUsers <String>]: autoAdmittedUsersType [MeetingInfoAllowConversationWithoutHost <Boolean?>]: [MyParticipantId <String>]: Read-only. [Operations <IMicrosoftGraphCommsOperation[]>]: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus [Participants <IMicrosoftGraphParticipant[]>]: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus [RequestedModalities <String[]>]: The list of requested modalities. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [RingingTimeoutInSeconds <Int32?>]: [RoutingPolicies <String[]>]: [SourceCountryCode <String>]: [SourceEndpointType <String>]: endpointType [SourceIdentity <IMicrosoftGraphIdentitySet>]: identitySet [SourceLanguageId <String>]: The language culture string. Read-only. [SourceRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [State <String>]: callState [Subject <String>]: The subject of the conversation. [Targets <IMicrosoftGraphInvitationParticipantInfo[]>]: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. [TenantId <String>]: [TerminationReason <String>]: [ToneInfoSequenceId <Int64?>]: An incremental identifier used for ordering DTMF events. [ToneInfoTone <String>]: tone CALLROUTES <IMicrosoftGraphCallRoute[]>: . [Final <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType INCOMINGCONTEXTONBEHALFOF <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INCOMINGCONTEXTTRANSFEROR <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session OPERATIONS <IMicrosoftGraphCommsOperation[]>: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus PARTICIPANTS <IMicrosoftGraphParticipant[]>: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus SOURCEIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity TARGETS <IMicrosoftGraphInvitationParticipantInfo[]>: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcall #> function Update-MgCommunicationCall { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: call-id of call ${CallId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall] # call # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${ActiveModalities}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${AnsweredByCountryCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${AnsweredByEndpointType}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ANSWEREDBYIDENTITY properties and create a hash table. ${AnsweredByIdentity}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${AnsweredByLanguageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${AnsweredByRegion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAudioRoutingGroup[]] # . # To construct, see NOTES section for AUDIOROUTINGGROUPS properties and create a hash table. ${AudioRoutingGroups}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallOptions] # callOptions ${CallOptions}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRoute[]] # . # To construct, see NOTES section for CALLROUTES properties and create a hash table. ${CallRoutes}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The callback URL on which callbacks will be delivered. # Must be https. ${CallbackUri}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier of a message in a Microsoft Teams channel. ${ChatInfoMessageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The ID of the reply message. ${ChatInfoReplyChainMessageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier for a thread in Microsoft Teams. ${ChatInfoThreadId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callDirection ${Direction}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${IncomingContextObservedParticipantId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INCOMINGCONTEXTONBEHALFOF properties and create a hash table. ${IncomingContextOnBehalfOf}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${IncomingContextSourceParticipantId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for INCOMINGCONTEXTTRANSFEROR properties and create a hash table. ${IncomingContextTransferor}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MediaConfigRemoveFromDefaultAudioGroup}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # mediaState ${MediaStateAudio}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingCapabilityAllowAnonymousUsersToDialOut}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingCapabilityAllowAnonymousUsersToStartMeeting}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # autoAdmittedUsersType ${MeetingCapabilityAutoAdmittedUsers}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${MeetingInfoAllowConversationWithoutHost}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${MyParticipantId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCommsOperation[]] # Read-only. # Nullable. # To construct, see NOTES section for OPERATIONS properties and create a hash table. ${Operations}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphParticipant[]] # Read-only. # Nullable. # To construct, see NOTES section for PARTICIPANTS properties and create a hash table. ${Participants}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # The list of requested modalities. ${RequestedModalities}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${ResultInfoMessage}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${ResultInfoSubcode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int32] # . ${RingingTimeoutInSeconds}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${RoutingPolicies}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${SourceCountryCode}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # endpointType ${SourceEndpointType}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for SOURCEIDENTITY properties and create a hash table. ${SourceIdentity}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The language culture string. # Read-only. ${SourceLanguageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The home region of the participant. # This can be a country, a continent, or a larger geographic region. # This does not change based on the participant's current physical location. # Read-only. ${SourceRegion}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # callState ${State}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The subject of the conversation. ${Subject}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphInvitationParticipantInfo[]] # The targets of the call. # Required information for creating peer to peer call. # To construct, see NOTES section for TARGETS properties and create a hash table. ${Targets}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${TenantId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${TerminationReason}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Int64] # An incremental identifier used for ordering DTMF events. ${ToneInfoSequenceId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # tone ${ToneInfoTone}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCall_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCall_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCall_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCall_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update communications .Description Update communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCloudCommunications .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphCloudCommunications>: cloudCommunications [Id <String>]: Read-only. [CallRecords <IMicrosoftGraphCallRecordsCallRecord[]>]: [Id <String>]: Read-only. [EndDateTime <DateTime?>]: [JoinWebUrl <String>]: [LastModifiedDateTime <DateTime?>]: [Modalities <String[]>]: [Organizer <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Participants <IMicrosoftGraphIdentitySet[]>]: [Sessions <IMicrosoftGraphCallRecordsSession[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [Type <String>]: callType [Version <Int64?>]: [Calls <IMicrosoftGraphCall[]>]: [Id <String>]: Read-only. [ActiveModalities <String[]>]: [AnsweredByCountryCode <String>]: [AnsweredByEndpointType <String>]: endpointType [AnsweredByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [AnsweredByLanguageId <String>]: The language culture string. Read-only. [AnsweredByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [AudioRoutingGroups <IMicrosoftGraphAudioRoutingGroup[]>]: [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: [CallOptions <IMicrosoftGraphCallOptions>]: callOptions [CallRoutes <IMicrosoftGraphCallRoute[]>]: [Final <IMicrosoftGraphIdentitySet>]: identitySet [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType [CallbackUri <String>]: The callback URL on which callbacks will be delivered. Must be https. [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [Direction <String>]: callDirection [IncomingContextObservedParticipantId <String>]: [IncomingContextOnBehalfOf <IMicrosoftGraphIdentitySet>]: identitySet [IncomingContextSourceParticipantId <String>]: [IncomingContextTransferor <IMicrosoftGraphIdentitySet>]: identitySet [MediaConfigRemoveFromDefaultAudioGroup <Boolean?>]: [MediaStateAudio <String>]: mediaState [MeetingCapabilityAllowAnonymousUsersToDialOut <Boolean?>]: [MeetingCapabilityAllowAnonymousUsersToStartMeeting <Boolean?>]: [MeetingCapabilityAutoAdmittedUsers <String>]: autoAdmittedUsersType [MeetingInfoAllowConversationWithoutHost <Boolean?>]: [MyParticipantId <String>]: Read-only. [Operations <IMicrosoftGraphCommsOperation[]>]: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus [Participants <IMicrosoftGraphParticipant[]>]: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus [RequestedModalities <String[]>]: The list of requested modalities. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [RingingTimeoutInSeconds <Int32?>]: [RoutingPolicies <String[]>]: [SourceCountryCode <String>]: [SourceEndpointType <String>]: endpointType [SourceIdentity <IMicrosoftGraphIdentitySet>]: identitySet [SourceLanguageId <String>]: The language culture string. Read-only. [SourceRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [State <String>]: callState [Subject <String>]: The subject of the conversation. [Targets <IMicrosoftGraphInvitationParticipantInfo[]>]: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. [TenantId <String>]: [TerminationReason <String>]: [ToneInfoSequenceId <Int64?>]: An incremental identifier used for ordering DTMF events. [ToneInfoTone <String>]: tone [OnlineMeetings <IMicrosoftGraphOnlineMeeting[]>]: [Id <String>]: Read-only. [AccessLevel <String>]: accessLevel [AudioConferencingConferenceId <String>]: [AudioConferencingDialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [AudioConferencingTollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [AudioConferencingTollNumber <String>]: The toll number that connects to the Audio Conference Provider. [CanceledDateTime <DateTime?>]: [Capabilities <String[]>]: [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [CreationDateTime <DateTime?>]: The meeting creation time in UTC. Read-only. [EndDateTime <DateTime?>]: The meeting end time in UTC. [EntryExitAnnouncement <Boolean?>]: [ExpirationDateTime <DateTime?>]: [IsBroadcast <Boolean?>]: [IsCancelled <Boolean?>]: [JoinUrl <String>]: [OrganizerIdentity <IMicrosoftGraphIdentitySet>]: identitySet [OrganizerUpn <String>]: User principal name of the participant. [ParticipantAttendees <IMicrosoftGraphMeetingParticipantInfo[]>]: [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Upn <String>]: User principal name of the participant. [ParticipantContributors <IMicrosoftGraphMeetingParticipantInfo[]>]: [ParticipantProducers <IMicrosoftGraphMeetingParticipantInfo[]>]: [StartDateTime <DateTime?>]: The meeting start time in UTC. [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. CALLRECORDS <IMicrosoftGraphCallRecordsCallRecord[]>: . [Id <String>]: Read-only. [EndDateTime <DateTime?>]: [JoinWebUrl <String>]: [LastModifiedDateTime <DateTime?>]: [Modalities <String[]>]: [Organizer <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Participants <IMicrosoftGraphIdentitySet[]>]: [Sessions <IMicrosoftGraphCallRecordsSession[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Modalities <String[]>]: [Segments <IMicrosoftGraphCallRecordsSegment[]>]: [Id <String>]: Read-only. [CalleeUserAgentApplicationVersion <String>]: [CalleeUserAgentHeaderValue <String>]: [CallerUserAgentApplicationVersion <String>]: [CallerUserAgentHeaderValue <String>]: [EndDateTime <DateTime?>]: [FailureInfoReason <String>]: [FailureInfoStage <String>]: failureStage [Media <IMicrosoftGraphCallRecordsMedia[]>]: [CalleeDeviceCaptureDeviceDriver <String>]: [CalleeDeviceCaptureDeviceName <String>]: [CalleeDeviceCaptureNotFunctioningEventRatio <Single?>]: [CalleeDeviceClippingEventRatio <Single?>]: [CalleeDeviceCpuInsufficentEventRatio <Single?>]: [CalleeDeviceGlitchEventRatio <Single?>]: [CalleeDeviceHowlingEventCount <Int32?>]: [CalleeDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CalleeDeviceLowSpeechLevelEventRatio <Single?>]: [CalleeDeviceLowSpeechToNoiseEventRatio <Single?>]: [CalleeDeviceMicGlitchRate <Single?>]: [CalleeDeviceReceivedNoiseLevel <Int32?>]: [CalleeDeviceReceivedSignalLevel <Int32?>]: [CalleeDeviceRenderDeviceDriver <String>]: [CalleeDeviceRenderDeviceName <String>]: [CalleeDeviceRenderMuteEventRatio <Single?>]: [CalleeDeviceRenderNotFunctioningEventRatio <Single?>]: [CalleeDeviceRenderZeroVolumeEventRatio <Single?>]: [CalleeDeviceSentNoiseLevel <Int32?>]: [CalleeDeviceSentSignalLevel <Int32?>]: [CalleeDeviceSpeakerGlitchRate <Single?>]: [CalleeNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [BandwidthLowEventRatio <Single?>]: [BasicServiceSetIdentifier <String>]: [ConnectionType <String>]: networkConnectionType [DelayEventRatio <Single?>]: [DnsSuffix <String>]: [IPAddress <String>]: [LinkSpeed <Int64?>]: [MacAddress <String>]: [Port <Int32?>]: [ReceivedQualityEventRatio <Single?>]: [ReflexiveIPAddress <String>]: [RelayIPAddress <String>]: [RelayPort <Int32?>]: [SentQualityEventRatio <Single?>]: [Subnet <String>]: [WifiBand <String>]: wifiBand [WifiBatteryCharge <Int32?>]: [WifiChannel <Int32?>]: [WifiMicrosoftDriver <String>]: [WifiMicrosoftDriverVersion <String>]: [WifiRadioType <String>]: wifiRadioType [WifiSignalStrength <Int32?>]: [WifiVendorDriver <String>]: [WifiVendorDriverVersion <String>]: [CallerDeviceCaptureDeviceDriver <String>]: [CallerDeviceCaptureDeviceName <String>]: [CallerDeviceCaptureNotFunctioningEventRatio <Single?>]: [CallerDeviceClippingEventRatio <Single?>]: [CallerDeviceCpuInsufficentEventRatio <Single?>]: [CallerDeviceGlitchEventRatio <Single?>]: [CallerDeviceHowlingEventCount <Int32?>]: [CallerDeviceInitialSignalLevelRootMeanSquare <Single?>]: [CallerDeviceLowSpeechLevelEventRatio <Single?>]: [CallerDeviceLowSpeechToNoiseEventRatio <Single?>]: [CallerDeviceMicGlitchRate <Single?>]: [CallerDeviceReceivedNoiseLevel <Int32?>]: [CallerDeviceReceivedSignalLevel <Int32?>]: [CallerDeviceRenderDeviceDriver <String>]: [CallerDeviceRenderDeviceName <String>]: [CallerDeviceRenderMuteEventRatio <Single?>]: [CallerDeviceRenderNotFunctioningEventRatio <Single?>]: [CallerDeviceRenderZeroVolumeEventRatio <Single?>]: [CallerDeviceSentNoiseLevel <Int32?>]: [CallerDeviceSentSignalLevel <Int32?>]: [CallerDeviceSpeakerGlitchRate <Single?>]: [CallerNetwork <IMicrosoftGraphCallRecordsNetworkInfo>]: networkInfo [Label <String>]: [Streams <IMicrosoftGraphCallRecordsMediaStream[]>]: [AverageAudioDegradation <Single?>]: [AverageAudioNetworkJitter <TimeSpan?>]: [AverageBandwidthEstimate <Int64?>]: [AverageJitter <TimeSpan?>]: [AveragePacketLossRate <Single?>]: [AverageRatioOfConcealedSamples <Single?>]: [AverageReceivedFrameRate <Single?>]: [AverageRoundTripTime <TimeSpan?>]: [AverageVideoFrameLossPercentage <Single?>]: [AverageVideoFrameRate <Single?>]: [AverageVideoPacketLossRate <Single?>]: [EndDateTime <DateTime?>]: [LowFrameRateRatio <Single?>]: [LowVideoProcessingCapabilityRatio <Single?>]: [MaxAudioNetworkJitter <TimeSpan?>]: [MaxJitter <TimeSpan?>]: [MaxPacketLossRate <Single?>]: [MaxRatioOfConcealedSamples <Single?>]: [MaxRoundTripTime <TimeSpan?>]: [PacketUtilization <Int64?>]: [PostForwardErrorCorrectionPacketLossRate <Single?>]: [StartDateTime <DateTime?>]: [StreamDirection <String>]: mediaStreamDirection [StreamId <String>]: [WasMediaBypassed <Boolean?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [StartDateTime <DateTime?>]: [Type <String>]: callType [Version <Int64?>]: CALLS <IMicrosoftGraphCall[]>: . [Id <String>]: Read-only. [ActiveModalities <String[]>]: [AnsweredByCountryCode <String>]: [AnsweredByEndpointType <String>]: endpointType [AnsweredByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [AnsweredByLanguageId <String>]: The language culture string. Read-only. [AnsweredByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [AudioRoutingGroups <IMicrosoftGraphAudioRoutingGroup[]>]: [Id <String>]: Read-only. [Receivers <String[]>]: [RoutingMode <String>]: routingMode [Sources <String[]>]: [CallOptions <IMicrosoftGraphCallOptions>]: callOptions [CallRoutes <IMicrosoftGraphCallRoute[]>]: [Final <IMicrosoftGraphIdentitySet>]: identitySet [Original <IMicrosoftGraphIdentitySet>]: identitySet [RoutingType <String>]: routingType [CallbackUri <String>]: The callback URL on which callbacks will be delivered. Must be https. [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [Direction <String>]: callDirection [IncomingContextObservedParticipantId <String>]: [IncomingContextOnBehalfOf <IMicrosoftGraphIdentitySet>]: identitySet [IncomingContextSourceParticipantId <String>]: [IncomingContextTransferor <IMicrosoftGraphIdentitySet>]: identitySet [MediaConfigRemoveFromDefaultAudioGroup <Boolean?>]: [MediaStateAudio <String>]: mediaState [MeetingCapabilityAllowAnonymousUsersToDialOut <Boolean?>]: [MeetingCapabilityAllowAnonymousUsersToStartMeeting <Boolean?>]: [MeetingCapabilityAutoAdmittedUsers <String>]: autoAdmittedUsersType [MeetingInfoAllowConversationWithoutHost <Boolean?>]: [MyParticipantId <String>]: Read-only. [Operations <IMicrosoftGraphCommsOperation[]>]: Read-only. Nullable. [Id <String>]: Read-only. [ClientContext <String>]: Unique Client Context string. Max limit is 256 chars. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [Status <String>]: operationStatus [Participants <IMicrosoftGraphParticipant[]>]: Read-only. Nullable. [Id <String>]: Read-only. [InfoCountryCode <String>]: [InfoEndpointType <String>]: endpointType [InfoIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InfoLanguageId <String>]: The language culture string. Read-only. [InfoRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [InitiatedByCountryCode <String>]: [InitiatedByEndpointType <String>]: endpointType [InitiatedByIdentity <IMicrosoftGraphIdentitySet>]: identitySet [InitiatedByLanguageId <String>]: The language culture string. Read-only. [InitiatedByRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [IsInLobby <Boolean?>]: true if the participant is in lobby. [IsMuted <Boolean?>]: true if the participant is muted (client or server muted). [MediaStreams <IMicrosoftGraphMediaStream[]>]: The list of media streams. [Direction <String>]: mediaDirection [Label <String>]: The media stream label. [MediaType <String>]: modality [ServerMuted <Boolean?>]: If the media is muted by the server. [SourceId <String>]: The source ID. [Metadata <String>]: [RecordingInfoInitiator <IMicrosoftGraphIdentitySet>]: identitySet [RecordingInfoRecordingStatus <String>]: recordingStatus [RequestedModalities <String[]>]: The list of requested modalities. [ResultInfoCode <Int32?>]: [ResultInfoMessage <String>]: [ResultInfoSubcode <Int32?>]: [RingingTimeoutInSeconds <Int32?>]: [RoutingPolicies <String[]>]: [SourceCountryCode <String>]: [SourceEndpointType <String>]: endpointType [SourceIdentity <IMicrosoftGraphIdentitySet>]: identitySet [SourceLanguageId <String>]: The language culture string. Read-only. [SourceRegion <String>]: The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. [State <String>]: callState [Subject <String>]: The subject of the conversation. [Targets <IMicrosoftGraphInvitationParticipantInfo[]>]: The targets of the call. Required information for creating peer to peer call. [EndpointType <String>]: endpointType [Identity <IMicrosoftGraphIdentitySet>]: identitySet [ReplacesCallId <String>]: Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. [TenantId <String>]: [TerminationReason <String>]: [ToneInfoSequenceId <Int64?>]: An incremental identifier used for ordering DTMF events. [ToneInfoTone <String>]: tone ONLINEMEETINGS <IMicrosoftGraphOnlineMeeting[]>: . [Id <String>]: Read-only. [AccessLevel <String>]: accessLevel [AudioConferencingConferenceId <String>]: [AudioConferencingDialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [AudioConferencingTollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [AudioConferencingTollNumber <String>]: The toll number that connects to the Audio Conference Provider. [CanceledDateTime <DateTime?>]: [Capabilities <String[]>]: [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [CreationDateTime <DateTime?>]: The meeting creation time in UTC. Read-only. [EndDateTime <DateTime?>]: The meeting end time in UTC. [EntryExitAnnouncement <Boolean?>]: [ExpirationDateTime <DateTime?>]: [IsBroadcast <Boolean?>]: [IsCancelled <Boolean?>]: [JoinUrl <String>]: [OrganizerIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [OrganizerUpn <String>]: User principal name of the participant. [ParticipantAttendees <IMicrosoftGraphMeetingParticipantInfo[]>]: [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Upn <String>]: User principal name of the participant. [ParticipantContributors <IMicrosoftGraphMeetingParticipantInfo[]>]: [ParticipantProducers <IMicrosoftGraphMeetingParticipantInfo[]>]: [StartDateTime <DateTime?>]: The meeting start time in UTC. [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcloudcommunication #> function Update-MgCommunicationCloudCommunication { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCloudCommunications] # cloudCommunications # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCallRecordsCallRecord[]] # . # To construct, see NOTES section for CALLRECORDS properties and create a hash table. ${CallRecords}, [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphCall[]] # . # To construct, see NOTES section for CALLS properties and create a hash table. ${Calls}, [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting[]] # . # To construct, see NOTES section for ONLINEMEETINGS properties and create a hash table. ${OnlineMeetings}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCloudCommunication_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationCloudCommunication_UpdateExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # ---------------------------------------------------------------------------------- # # Copyright Microsoft Corporation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ---------------------------------------------------------------------------------- <# .Synopsis Update the navigation property onlineMeetings in communications .Description Update the navigation property onlineMeetings in communications .Example PS C:\> {{ Add code here }} {{ Add output here }} .Example PS C:\> {{ Add code here }} {{ Add output here }} .Inputs Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity .Inputs Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. BODYPARAMETER <IMicrosoftGraphOnlineMeeting>: onlineMeeting [Id <String>]: Read-only. [AccessLevel <String>]: accessLevel [AudioConferencingConferenceId <String>]: [AudioConferencingDialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [AudioConferencingTollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [AudioConferencingTollNumber <String>]: The toll number that connects to the Audio Conference Provider. [CanceledDateTime <DateTime?>]: [Capabilities <String[]>]: [ChatInfoMessageId <String>]: The unique identifier of a message in a Microsoft Teams channel. [ChatInfoReplyChainMessageId <String>]: The ID of the reply message. [ChatInfoThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [CreationDateTime <DateTime?>]: The meeting creation time in UTC. Read-only. [EndDateTime <DateTime?>]: The meeting end time in UTC. [EntryExitAnnouncement <Boolean?>]: [ExpirationDateTime <DateTime?>]: [IsBroadcast <Boolean?>]: [IsCancelled <Boolean?>]: [JoinUrl <String>]: [OrganizerIdentity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [OrganizerUpn <String>]: User principal name of the participant. [ParticipantAttendees <IMicrosoftGraphMeetingParticipantInfo[]>]: [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Upn <String>]: User principal name of the participant. [ParticipantContributors <IMicrosoftGraphMeetingParticipantInfo[]>]: [ParticipantProducers <IMicrosoftGraphMeetingParticipantInfo[]>]: [StartDateTime <DateTime?>]: The meeting start time in UTC. [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter [AudioRoutingGroupId <String>]: key: audioRoutingGroup-id of audioRoutingGroup [CallId <String>]: key: call-id of call [CallRecordId <String>]: key: callRecord-id of callRecord [CommsOperationId <String>]: key: commsOperation-id of commsOperation [OnlineMeetingId <String>]: key: onlineMeeting-id of onlineMeeting [ParticipantId <String>]: key: participant-id of participant [SegmentId <String>]: key: segment-id of segment [SessionId <String>]: key: session-id of session ORGANIZERIDENTITY <IMicrosoftGraphIdentitySet>: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity PARTICIPANTATTENDEES <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. PARTICIPANTCONTRIBUTORS <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. PARTICIPANTPRODUCERS <IMicrosoftGraphMeetingParticipantInfo[]>: . [Identity <IMicrosoftGraphIdentitySet>]: identitySet [Application <IMicrosoftGraphIdentity>]: identity [DisplayName <String>]: 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. [Id <String>]: Unique identifier for the identity. [Device <IMicrosoftGraphIdentity>]: identity [User <IMicrosoftGraphIdentity>]: identity [Upn <String>]: User principal name of the participant. .Link https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting #> function Update-MgCommunicationOnlineMeeting { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Graph.PowerShell.Category('Path')] [System.String] # key: onlineMeeting-id of onlineMeeting ${OnlineMeetingId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Path')] [Microsoft.Graph.PowerShell.Models.ICloudCommunicationsIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOnlineMeeting] # onlineMeeting # To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ${BodyParameter}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # accessLevel ${AccessLevel}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${AudioConferencingConferenceId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # A URL to the externally-accessible web page that contains dial-in information. ${AudioConferencingDialinUrl}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The toll-free number that connects to the Audio Conference Provider. ${AudioConferencingTollFreeNumber}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The toll number that connects to the Audio Conference Provider. ${AudioConferencingTollNumber}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${CanceledDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String[]] # . ${Capabilities}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier of a message in a Microsoft Teams channel. ${ChatInfoMessageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The ID of the reply message. ${ChatInfoReplyChainMessageId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The unique identifier for a thread in Microsoft Teams. ${ChatInfoThreadId}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting creation time in UTC. # Read-only. ${CreationDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting end time in UTC. ${EndDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${EntryExitAnnouncement}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # . ${ExpirationDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # Read-only. ${Id}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${IsBroadcast}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.Management.Automation.SwitchParameter] # . ${IsCancelled}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # . ${JoinUrl}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphIdentitySet] # identitySet # To construct, see NOTES section for ORGANIZERIDENTITY properties and create a hash table. ${OrganizerIdentity}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # User principal name of the participant. ${OrganizerUpn}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTATTENDEES properties and create a hash table. ${ParticipantAttendees}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTCONTRIBUTORS properties and create a hash table. ${ParticipantContributors}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphMeetingParticipantInfo[]] # . # To construct, see NOTES section for PARTICIPANTPRODUCERS properties and create a hash table. ${ParticipantProducers}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.DateTime] # The meeting start time in UTC. ${StartDateTime}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The subject of the online meeting. ${Subject}, [Parameter(ParameterSetName='UpdateExpanded')] [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] [Microsoft.Graph.PowerShell.Category('Body')] [System.String] # The video teleconferencing ID. # Read-only. ${VideoTeleconferenceId}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Graph.PowerShell.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationOnlineMeeting_Update'; UpdateExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationOnlineMeeting_UpdateExpanded'; UpdateViaIdentity = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationOnlineMeeting_UpdateViaIdentity'; UpdateViaIdentityExpanded = 'Microsoft.Graph.CloudCommunications.private\Update-MgCommunicationOnlineMeeting_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # SIG # Begin signature block # MIIjkwYJKoZIhvcNAQcCoIIjhDCCI4ACAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAAfPJHGRf5GoRl # vTqVIFWXyW6+h5VIC8gxFkrrmWWqpKCCDYUwggYDMIID66ADAgECAhMzAAABiK9S # 1rmSbej5AAAAAAGIMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMjAwMzA0MTgzOTQ4WhcNMjEwMzAzMTgzOTQ4WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQCSCNryE+Cewy2m4t/a74wZ7C9YTwv1PyC4BvM/kSWPNs8n0RTe+FvYfU+E9uf0 # t7nYlAzHjK+plif2BhD+NgdhIUQ8sVwWO39tjvQRHjP2//vSvIfmmkRoML1Ihnjs # 9kQiZQzYRDYYRp9xSQYmRwQjk5hl8/U7RgOiQDitVHaU7BT1MI92lfZRuIIDDYBd # vXtbclYJMVOwqZtv0O9zQCret6R+fRSGaDNfEEpcILL+D7RV3M4uaJE4Ta6KAOdv # V+MVaJp1YXFTZPKtpjHO6d9pHQPZiG7NdC6QbnRGmsa48uNQrb6AfmLKDI1Lp31W # MogTaX5tZf+CZT9PSuvjOCLNAgMBAAGjggGCMIIBfjAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUj9RJL9zNrPcL10RZdMQIXZN7MG8w # VAYDVR0RBE0wS6RJMEcxLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh # dGlvbnMgTGltaXRlZDEWMBQGA1UEBRMNMjMwMDEyKzQ1ODM4NjAfBgNVHSMEGDAW # gBRIbmTlUAXTgqoXNzcitW2oynUClTBUBgNVHR8ETTBLMEmgR6BFhkNodHRwOi8v # d3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0EyMDExXzIw # MTEtMDctMDguY3JsMGEGCCsGAQUFBwEBBFUwUzBRBggrBgEFBQcwAoZFaHR0cDov # L3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0EyMDEx # XzIwMTEtMDctMDguY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIB # ACnXo8hjp7FeT+H6iQlV3CcGnkSbFvIpKYafgzYCFo3UHY1VHYJVb5jHEO8oG26Q # qBELmak6MTI+ra3WKMTGhE1sEIlowTcp4IAs8a5wpCh6Vf4Z/bAtIppP3p3gXk2X # 8UXTc+WxjQYsDkFiSzo/OBa5hkdW1g4EpO43l9mjToBdqEPtIXsZ7Hi1/6y4gK0P # mMiwG8LMpSn0n/oSHGjrUNBgHJPxgs63Slf58QGBznuXiRaXmfTUDdrvhRocdxIM # i8nXQwWACMiQzJSRzBP5S2wUq7nMAqjaTbeXhJqD2SFVHdUYlKruvtPSwbnqSRWT # GI8s4FEXt+TL3w5JnwVZmZkUFoioQDMMjFyaKurdJ6pnzbr1h6QW0R97fWc8xEIz # LIOiU2rjwWAtlQqFO8KNiykjYGyEf5LyAJKAO+rJd9fsYR+VBauIEQoYmjnUbTXM # SY2Lf5KMluWlDOGVh8q6XjmBccpaT+8tCfxpaVYPi1ncnwTwaPQvVq8RjWDRB7Pa # 8ruHgj2HJFi69+hcq7mWx5nTUtzzFa7RSZfE5a1a5AuBmGNRr7f8cNfa01+tiWjV # Kk1a+gJUBSP0sIxecFbVSXTZ7bqeal45XSDIisZBkWb+83TbXdTGMDSUFKTAdtC+ # r35GfsN8QVy59Hb5ZYzAXczhgRmk7NyE6jD0Ym5TKiW5MIIHejCCBWKgAwIBAgIK # YQ6Q0gAAAAAAAzANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV # BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv # c29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm # aWNhdGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwNzA4MjA1OTA5WhcNMjYwNzA4MjEw # OTA5WjB+MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSgwJgYD # VQQDEx9NaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQSAyMDExMIICIjANBgkqhkiG # 9w0BAQEFAAOCAg8AMIICCgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGfQhsqa+la # UKq4BjgaBEm6f8MMHt03a8YS2AvwOMKZBrDIOdUBFDFC04kNeWSHfpRgJGyvnkmc # 6Whe0t+bU7IKLMOv2akrrnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13YxC4D # dato88tt8zpcoRb0RrrgOGSsbmQ1eKagYw8t00CT+OPeBw3VXHmlSSnnDb6gE3e+ # lD3v++MrWhAfTVYoonpy4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nk # kDstrjNYxbc+/jLTswM9sbKvkjh+0p2ALPVOVpEhNSXDOW5kf1O6nA+tGSOEy/S6 # A4aN91/w0FK/jJSHvMAhdCVfGCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmd # X4jiJV3TIUs+UsS1Vz8kA/DRelsv1SPjcF0PUUZ3s/gA4bysAoJf28AVs70b1FVL # 5zmhD+kjSbwYuER8ReTBw3J64HLnJN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zd # sGbiwZeBe+3W7UvnSSmnEyimp31ngOaKYnhfsi+E11ecXL93KCjx7W3DKI8sj0A3 # T8HhhUSJxAlMxdSlQy90lfdu+HggWCwTXWCVmj5PM4TasIgX3p5O9JawvEagbJjS # 4NaIjAsCAwEAAaOCAe0wggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRI # bmTlUAXTgqoXNzcitW2oynUClTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAL # BgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToCMZBD # uRQFTuHqp8cx0SOJNDBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLm1pY3Jv # c29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf # MDNfMjIuY3JsMF4GCCsGAQUFBwEBBFIwUDBOBggrBgEFBQcwAoZCaHR0cDovL3d3 # dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf # MDNfMjIuY3J0MIGfBgNVHSAEgZcwgZQwgZEGCSsGAQQBgjcuAzCBgzA/BggrBgEF # BQcCARYzaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1h # cnljcHMuaHRtMEAGCCsGAQUFBwICMDQeMiAdAEwAZQBnAGEAbABfAHAAbwBsAGkA # YwB5AF8AcwB0AGEAdABlAG0AZQBuAHQALiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn # 8oalmOBUeRou09h0ZyKbC5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+vj/oCso7 # v0epo/Np22O/IjWll11lhJB9i0ZQVdgMknzSGksc8zxCi1LQsP1r4z4HLimb5j0b # pdS1HXeUOeLpZMlEPXh6I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6VoCo/ # KmtYSWMfCWluWpiW5IP0wI/zRive/DvQvTXvbiWu5a8n7dDd8w6vmSiXmE0OPQvy # CInWH8MyGOLwxS3OW560STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBp # mLJZiWhub6e3dMNABQamASooPoI/E01mC8CzTfXhj38cbxV9Rad25UAqZaPDXVJi # hsMdYzaXht/a8/jyFqGaJ+HNpZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYb # BL7fQccOKO7eZS/sl/ahXJbYANahRr1Z85elCUtIEJmAH9AAKcWxm6U/RXceNcbS # oqKfenoi+kiVH6v7RyOA9Z74v2u3S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sL # gOppO6/8MO0ETI7f33VtY5E90Z1WTk+/gFcioXgRMiF670EKsT/7qMykXcGhiJtX # cVZOSEXAQsmbdlsKgEhr/Xmfwb1tbWrJUnMTDXpQzTGCFWQwghVgAgEBMIGVMH4x # CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt # b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01p # Y3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTECEzMAAAGIr1LWuZJt6PkAAAAA # AYgwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQw # HAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIAf9 # M/1lR8wh6Mq2kmTUUy2wc4P0BgqI+T98bJ3AS7PYMEIGCisGAQQBgjcCAQwxNDAy # oBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20wDQYJKoZIhvcNAQEBBQAEggEAkKLi7s/GDFx5W/aDPeseAqJkX8xApbgdAWjz # Q2cVyg4MRdmWvsLGZfIR3bxDH/+f3Gl3ZvF5VFA2c4XWpa8QlEvVZw0UtULDeeE1 # AhAiylz2cuYCJGjBpjyUa+WJPI6G5ETlk26Gt8/tFjn/5lVSvl3uvksOVKtMXpj2 # FxHFvTwe9p8egJenuSRLVcQdQPATX/8JTUtVF2L6TvOVX3WlRbnktVsT1h/TAXjU # z9x68mAOC6yi9TWNF9vtDlQM9TCSpLK1XgEjDKRXQiH5pNVUSsRzOLHt1APZ668W # oRuzaxRPu7Rr4xSLiViqJFvcoSrLdabhzCcZOn087U9mHmFeeKGCEu4wghLqBgor # BgEEAYI3AwMBMYIS2jCCEtYGCSqGSIb3DQEHAqCCEscwghLDAgEDMQ8wDQYJYIZI # AWUDBAIBBQAwggFVBgsqhkiG9w0BCRABBKCCAUQEggFAMIIBPAIBAQYKKwYBBAGE # WQoDATAxMA0GCWCGSAFlAwQCAQUABCDRbCrpRo4rZQfOcXCqgUj2P1oASpqF2qLY # nclMk4Ly/AIGXtVJ3UCRGBMyMDIwMDYxNzIyNDYxOS44MDJaMASAAgH0oIHUpIHR # MIHOMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH # UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSkwJwYDVQQL # EyBNaWNyb3NvZnQgT3BlcmF0aW9ucyBQdWVydG8gUmljbzEmMCQGA1UECxMdVGhh # bGVzIFRTUyBFU046ODk3QS1FMzU2LTE3MDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU # aW1lLVN0YW1wIFNlcnZpY2Wggg5BMIIE9TCCA92gAwIBAgITMwAAASwir0WXdfkb # 7gAAAAABLDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg # MjAxMDAeFw0xOTEyMTkwMTE1MDNaFw0yMTAzMTcwMTE1MDNaMIHOMQswCQYDVQQG # EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG # A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSkwJwYDVQQLEyBNaWNyb3NvZnQg # T3BlcmF0aW9ucyBQdWVydG8gUmljbzEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046 # ODk3QS1FMzU2LTE3MDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl # cnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDytc4EkqvjMQGK # N6qQrUA8UjDzycuppv8HxCTYzVJ2LSxQcJdQVEubaxJP7eNZXcSEynobPgAcWKqO # EMbINxstboCosBwJ2IonpHwvmYabTRYLZw2SJ+OcwtAJVa/+lHy7bC3BwodVxJS1 # B3xAtJwbkHDP0qWKPXt5damOTXTIAxsQrJginYmX2FyLvlNFGCAYXc5kh5wd38WT # gVXK+YbRRxAQTbf6xSZZvwOMm/KAbKflH9KeUMJjv2wnHagdeSacpToWZlrNLFHy # SpSvRKwIQcBpItniERSrEAXZF0vT1qRdcNoCCUb0pAxGgn/pWxkz3Usx0m30RFjh # fcGN4mI/AgMBAAGjggEbMIIBFzAdBgNVHQ4EFgQUUWoWUhn6wkIQsiMhh/Q5Imlu # y9MwHwYDVR0jBBgwFoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBL # oEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv # TWljVGltU3RhUENBXzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggr # BgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNU # aW1TdGFQQ0FfMjAxMC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAK # BggrBgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAQEATxcRyMIuLwB+PcPUr5s+it7T # OeUZVuaT3lC13brdkasumLNPlaWbG7mhKMbOmdQt4TG5IqmRcccpbcSabh08hk4O # tc3zSBeZ+kbGBd7OyBJQ1zX2c5xdf9olnOrkT2SvK8cVCf+3pmF2QmMLlGNF47Aq # T/aW0USniYuq+Wq0siPjXysb4KDNtSTbdQXHZV7gHnHXf5PFI8QrHH32p6Ctp+ix # cNT3GZRDuzSHe6PrKDNgtEGOQWHYIaZ+7qqKQeoschSCJA1xbm/tROxpgBMH1Olc # BBy+8vazRPG3fia0LPsgLZJB8vRZl4Pz7BqtXWlc19UqOwiep8qYabh0jd1X0zCC # BnEwggRZoAMCAQICCmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNV # BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w # HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29m # dCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1 # NVoXDTI1MDcwMTIxNDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp # bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw # b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw # ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/ # aZRrdFQQ1aUKAIKF++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxh # MFmxMEQP8WCIhFRDDNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhH # hjKEHnRhZ5FfgVSxz5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tk # iVBisV39dx898Fd1rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox # 8NpOBpG2iAg16HgcsOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJN # AgMBAAGjggHmMIIB4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIox # kPNDe3xGG8UzaFqFbVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P # BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 # lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu # Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js # MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv # ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAG # A1UdIAEB/wSBlTCBkjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRw # Oi8vd3d3Lm1pY3Jvc29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAG # CCsGAQUFBwICMDQeMiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEA # dABlAG0AZQBuAHQALiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXED # PZ2joSFvs+umzPUxvs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgr # UYJEEvu5U4zM9GASinbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c # 8pl5SpFSAK84Dxf1L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFw # nzJKJ/1Vry/+tuWOM7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFt # w5yjojz6f32WapB4pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk # 7Pf0v35jWSUPei45V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9d # dJgiCGHasFAeb73x4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zG # y9iCtHLNHfS4hQEegPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3 # yKxO2ii4sanblrKnQqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7c # RDyXUHHXodLFVeNp3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wkn # HNWzfjUeCLraNtvTX4/edIhJEqGCAs8wggI4AgEBMIH8oYHUpIHRMIHOMQswCQYD # VQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEe # MBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSkwJwYDVQQLEyBNaWNyb3Nv # ZnQgT3BlcmF0aW9ucyBQdWVydG8gUmljbzEmMCQGA1UECxMdVGhhbGVzIFRTUyBF # U046ODk3QS1FMzU2LTE3MDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1w # IFNlcnZpY2WiIwoBATAHBgUrDgMCGgMVAAxOTikjKDcf5mMWFmqdUUzqIWydoIGD # MIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV # BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG # A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEF # BQACBQDilN/4MCIYDzIwMjAwNjE3MjIzMTIwWhgPMjAyMDA2MTgyMjMxMjBaMHQw # OgYKKwYBBAGEWQoEATEsMCowCgIFAOKU3/gCAQAwBwIBAAICJRswBwIBAAICEaMw # CgIFAOKWMXgCAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgC # AQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQA40LlREnwtgEg6 # lcBmuzvMErvr+VlN+Ncj5fPsYr+Ixx9mApVArHKflAOatlBtAAqOU0F/J7LtVtED # ambF5m7bSbIhF7aG/o1FM+tNE7Og5plpaJtc680ZzkOEYZFVmZyFbpIvIF1gIg/2 # 36AzahrDvdCeypm++Mcf4HiIgRt9ezGCAw0wggMJAgEBMIGTMHwxCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBU # aW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABLCKvRZd1+RvuAAAAAAEsMA0GCWCGSAFl # AwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcN # AQkEMSIEIIOza7jB3I++W4PwrSN+Y6mgt9xJHa3pVT/is+NVHzULMIH6BgsqhkiG # 9w0BCRACLzGB6jCB5zCB5DCBvQQgW5/9LhRYeNoUzOVzqCnV3rwWoksZmCvSJXJ/ # Z7uWR+EwgZgwgYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv # bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 # aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAA # ASwir0WXdfkb7gAAAAABLDAiBCAZrBXPPbsAQgFiWxsuU7B6OGb3S1gjmODNpcHW # onXQgzANBgkqhkiG9w0BAQsFAASCAQBzvp0q5tAy306yTrb+GSAdAgB1E5Ouj4Ji # qmVQqVbMA7d6ZW6xDz1BCK9+mq9xYpS96EBE8H3pcM67wo1dpRtf/vLHIpOVfbAG # zfmvPpb8ENkqqZzUhC+ahkauFefKFvyryZW253vFa06c0+htJnlv1gUUS4nqnoKQ # CUigTZ7cjxY6fYSEEKVbYsSjKoYk5dBh3GJtCvXLmy9XCcaaQ0nH/3740Ijck3Zq # 8xLTflyR39dPT+Y5ozhMGOWeN8a9MleE2Ed9iNTx9tpOvGGTyO+3j/w4GXzeje10 # CI1Q15gIydzJdVy00BzafPqs0GQuyAVoE4GEaFxa5wKIuL/XZQvB # SIG # End signature block |