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')] [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')] [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')] [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')] [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')] [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')] [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')] [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')] [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 # MIIjhQYJKoZIhvcNAQcCoIIjdjCCI3ICAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAGMrlDS500DTqD # fx9ceg0CJJbz6D39cRZmSXeUJzz4EqCCDYEwggX/MIID56ADAgECAhMzAAABh3IX # chVZQMcJAAAAAAGHMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMjAwMzA0MTgzOTQ3WhcNMjEwMzAzMTgzOTQ3WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQDOt8kLc7P3T7MKIhouYHewMFmnq8Ayu7FOhZCQabVwBp2VS4WyB2Qe4TQBT8aB # znANDEPjHKNdPT8Xz5cNali6XHefS8i/WXtF0vSsP8NEv6mBHuA2p1fw2wB/F0dH # sJ3GfZ5c0sPJjklsiYqPw59xJ54kM91IOgiO2OUzjNAljPibjCWfH7UzQ1TPHc4d # weils8GEIrbBRb7IWwiObL12jWT4Yh71NQgvJ9Fn6+UhD9x2uk3dLj84vwt1NuFQ # itKJxIV0fVsRNR3abQVOLqpDugbr0SzNL6o8xzOHL5OXiGGwg6ekiXA1/2XXY7yV # Fc39tledDtZjSjNbex1zzwSXAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUhov4ZyO96axkJdMjpzu2zVXOJcsw # UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 # ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDU4Mzg1MB8GA1UdIwQYMBaAFEhu # ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu # bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w # Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 # Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx # MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAixmy # S6E6vprWD9KFNIB9G5zyMuIjZAOuUJ1EK/Vlg6Fb3ZHXjjUwATKIcXbFuFC6Wr4K # NrU4DY/sBVqmab5AC/je3bpUpjtxpEyqUqtPc30wEg/rO9vmKmqKoLPT37svc2NV # BmGNl+85qO4fV/w7Cx7J0Bbqk19KcRNdjt6eKoTnTPHBHlVHQIHZpMxacbFOAkJr # qAVkYZdz7ikNXTxV+GRb36tC4ByMNxE2DF7vFdvaiZP0CVZ5ByJ2gAhXMdK9+usx # zVk913qKde1OAuWdv+rndqkAIm8fUlRnr4saSCg7cIbUwCCf116wUJ7EuJDg0vHe # yhnCeHnBbyH3RZkHEi2ofmfgnFISJZDdMAeVZGVOh20Jp50XBzqokpPzeZ6zc1/g # yILNyiVgE+RPkjnUQshd1f1PMgn3tns2Cz7bJiVUaqEO3n9qRFgy5JuLae6UweGf # AeOo3dgLZxikKzYs3hDMaEtJq8IP71cX7QXe6lnMmXU/Hdfz2p897Zd+kU+vZvKI # 3cwLfuVQgK2RZ2z+Kc3K3dRPz2rXycK5XCuRZmvGab/WbrZiC7wJQapgBodltMI5 # GMdFrBg9IeF7/rP4EqVQXeKtevTlZXjpuNhhjuR+2DMt/dWufjXpiW91bo3aH6Ea # jOALXmoxgltCp1K7hrS6gmsvj94cLRf50QQ4U8Qwggd6MIIFYqADAgECAgphDpDS # AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 # ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla # MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS # ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT # H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG # OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S # 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz # y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 # 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u # M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 # X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl # XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP # 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB # l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF # RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM # CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ # BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud # DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO # 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 # LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p # Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB # FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw # cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA # XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY # 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj # 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd # d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ # Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf # wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ # aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j # NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B # xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 # eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 # r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I # RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWjCCFVYCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAYdyF3IVWUDHCQAAAAABhzAN # BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgQUBqOXkP # uX4FespSUzo6+16RORNy/jIUj10RhY73lFwwQgYKKwYBBAGCNwIBDDE0MDKgFIAS # AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN # BgkqhkiG9w0BAQEFAASCAQBWL1+FQei3IqQ3rsQj4/D4P1E4VWnhPGwvPkrfwvtB # x7RShx/TMlYg4yJKSZPDclX120j+K2OCJW0p6Lz0lnGDzzcqQ6kXvwttVwq3qk0R # NqJnQRWv+8sKkH08KkklWK+so4D4E5RW8P7ac1kQ8Qso1y+s4R/Gz+uTdfI5Efyh # HQd/vbI3Kae5WNsn0uzjpynyAZZ/OI7bZmucQF2B16+pPZ3M/49h8U2Hq74+vj7i # D4Egq0iGwu28G+xOMZprbFDSrCb6xDjs9sY5qypvb+8SnLcmTTjk8u7qaZ/UXmhp # oldOv6ft2TkYUjXubiMJAIMsgJKXSBS7k/WG6Y0GHlnRoYIS5DCCEuAGCisGAQQB # gjcDAwExghLQMIISzAYJKoZIhvcNAQcCoIISvTCCErkCAQMxDzANBglghkgBZQME # AgEFADCCAVAGCyqGSIb3DQEJEAEEoIIBPwSCATswggE3AgEBBgorBgEEAYRZCgMB # MDEwDQYJYIZIAWUDBAIBBQAEIEnL1vfOuifky8W4r9UN1yWDhx2IP8QeA+xYYKTx # fXPKAgZerFkcLVsYEjIwMjAwNTA2MjIyODIxLjU3WjAEgAIB9KCB0KSBzTCByjEL # MAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJ # cmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBF # U046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1w # IFNlcnZpY2Wggg48MIIE8TCCA9mgAwIBAgITMwAAAQvk+b6Pb0wd0AAAAAABCzAN # BgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv # bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 # aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0x # OTEwMjMyMzE5MTVaFw0yMTAxMjEyMzE5MTVaMIHKMQswCQYDVQQGEwJVUzELMAkG # A1UECBMCV0ExEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD # b3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9u # cyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozQkQ0LTRCODAtNjlD # MzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZTCCASIwDQYJ # KoZIhvcNAQEBBQADggEPADCCAQoCggEBAJcC1Z1GMUG4z4PaeFQotW5a/1xlyrX/ # x6bKRAGmUOKLwOrDAI2cPTMmHPuf3ha1aMWxzkov90XyApZMxEfkxVNrl3EIm7pW # 1mhtz6zO0z7Qk8zlWZxv/sP4CUUREYCRAYbE79nh/EcfX8Rxn+LBSKbNp9eME6Uh # DdFLFQCP3zSWK4DI0KuPwl26cZHedVJG/Em1alRm+UhSthjgsOYkmwWwjyCxyHcu # tyGY94GSjGy/LtGkqFw5C1NhpwPjy/Pt/NPZyJyImoBfFm3t+2HyyCoqJRREJW5K # VxQpcFeb/V1xgIqo6hTPZga7aLS3gr9fXslZnmN03W/GrNJBr0/g8fECAwEAAaOC # ARswggEXMB0GA1UdDgQWBBStH9nqHYoenOCYDVBEZf/3bV7e7zAfBgNVHSMEGDAW # gBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8v # Y3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNUaW1TdGFQQ0Ff # MjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRw # Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0YVBDQV8yMDEw # LTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0G # CSqGSIb3DQEBCwUAA4IBAQAm6KOdqe82tLrd7zsIrSDAiYjwLgl2HEss+cDqb+lR # JdZ6X0oJre33k1E07fo2B6YPGGyTPutUeJSKBvWkl2b5MHlKGDYOU+LVSF0JNo3m # VNZn6scAV8MjiLaB0o7B3K6DvebmNrZ2p8NOXYOLlrHBwGAO8axkt8Gb5oa63a9Q # YEGDVCMwp+pAaowkJjBc8Z0ebBE3VQ3kyk5EGROaTYMRZaNGbQspDX95XgpiJTlx # XgYLT/z+r9fvXBuvB3IfZnK+HaYg4T7hP2ZlzsfQLNnxB2pMd3bFtNPUZI1F55hi # WdORaUKIQuNiQicdR/C6YLWkK5kx/ghM3DsqN44Y/IoNMIIGcTCCBFmgAwIBAgIK # YQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV # BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv # c29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm # aWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcNMjUwNzAxMjE0 # NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD # VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIwDQYJKoZIhvcN # AQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0VBDVpQoAgoX7 # 7XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEwRA/xYIiEVEMM # 1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQedGFnkV+BVLHP # k0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKxXf13Hz3wV3Ws # vYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4GkbaICDXoeByw # 6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEAAaOCAeYwggHi # MBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7fEYbxTNoWoVt # VTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0T # AQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBWBgNV # HR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9w # cm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUHAQEE # TjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2Nl # cnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0gAQH/BIGVMIGS # MIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93d3cubWljcm9z # b2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYBBQUHAgIwNB4y # IB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUAbQBlAG4AdAAu # IB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOhIW+z66bM9TG+ # zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS+7lTjMz0YBKK # dsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlKkVIArzgPF/Uv # eYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon/VWvL/625Y4z # u2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOiPPp/fZZqkHim # bdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/fmNZJQ96LjlX # dqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCIIYdqwUB5vvfHh # AN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0cs0d9LiFAR6A # +xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7aKLixqduWsqdC # osnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQcdeh0sVV42ne # V8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+NR4Iuto229Nf # j950iEkSoYICzjCCAjcCAQEwgfihgdCkgc0wgcoxCzAJBgNVBAYTAlVTMQswCQYD # VQQIEwJXQTEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENv # cnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25z # IExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjNCRDQtNEI4MC02OUMz # MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEwBwYF # Kw4DAhoDFQDx/fkdMWpT3PCKEj2S2aw+CnAwUqCBgzCBgKR+MHwxCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBU # aW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA4l1u+zAiGA8yMDIw # MDUwNzAxMTQzNVoYDzIwMjAwNTA4MDExNDM1WjB3MD0GCisGAQQBhFkKBAExLzAt # MAoCBQDiXW77AgEAMAoCAQACAhI0AgH/MAcCAQACAhIcMAoCBQDiXsB7AgEAMDYG # CisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAIAgEA # AgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAC9yCzb70stvMnN7w6TiuxCompayxCzUJ # Gh/USs7ICnVsYGMSjkSX1Guhw5TTovefpX1q4dX0EQyUvefztSlDFAwH0ByWiqSh # WsZ7XVvTlEVoEfTZaa68jfKisUtaIsPfdkGK+OmtZAlnuFukAig7lBoM7eyFchSv # vFTeFKrI46kxggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg # MjAxMAITMwAAAQvk+b6Pb0wd0AAAAAABCzANBglghkgBZQMEAgEFAKCCAUowGgYJ # KoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCBroH4J2+35 # xGoN5oB/XwIAGewNvoX0nnQWyegdTCik6zCB+gYLKoZIhvcNAQkQAi8xgeowgecw # geQwgb0EIDSP0M4gUz46JJfxcCRcBeK9FHQs8cDpxVT8BMATXHOIMIGYMIGApH4w # fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl # ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd # TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAEL5Pm+j29MHdAAAAAA # AQswIgQg9NowBcOJ0h4euT0Fmn5hRyhZgBzk++GouWOjYX194AgwDQYJKoZIhvcN # AQELBQAEggEAPoUgkoNXWwRQXHvAUR38P3XxUEq0RhC1L3sNtmqCYDnjQYN2lmfD # g/f7Tzq0eSB0JyIk21DPS4LyhXpf6pKluQJ3UPi6tiNIaJFf5FVK3r8p6bmz1ZBt # jWz1jRzrza6CHwo+2OzttzRbienqGBo0TDxKRlVrsHuib3qE3qIAyk/LiPiOnBYf # uvAle8iLujyWGJwSKA6giVw5D3TGTNoen2ys0HH/V2yfO9gbysNtMEBuUDvwEle7 # vv3n3AWqHUJHpu85tg3RqYHF4PjBki2XgMeGhqOfr0jkjEPmUBG11W1KUKvK72DI # 00eIv+LZihVaFxldhwdJnrUumuggfDAg9g== # SIG # End signature block |