Skip to content

Commit

Permalink
Update Microsoft365.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Oct 3, 2023
1 parent b43b639 commit ce9f4fd
Showing 1 changed file with 97 additions and 2 deletions.
99 changes: 97 additions & 2 deletions Tests/Unit/Stubs/Microsoft365.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -10711,6 +10711,103 @@ function Set-PerimeterConfig
$GatewayIPAddresses
)
}
function Set-Place
{
[CmdletBinding()]
param(
[Parameter()]
[System.String]
$PostalCode,

[Parameter()]
[System.String]
$Phone,

[Parameter()]
[System.Object]
$Identity,

[Parameter()]
[System.Object]
$CountryOrRegion,

[Parameter()]
[System.String]
$ParentId,

[Parameter()]
[System.String]
$Street,

[Parameter()]
[System.Boolean]
$IsWheelChairAccessible,

[Parameter()]
[System.String]
$AudioDeviceName,

[Parameter()]
[System.String]
$DisplayDeviceName,

[Parameter()]
[System.Object[]]
$Desks,

[Parameter()]
[System.String]
$Building,

[Parameter()]
[System.String]
$State,

[Parameter()]
[System.String]
$City,

[Parameter()]
[System.Object]
$Floor,

[Parameter()]
[System.Object]
$ParentType,

[Parameter()]
[System.String]
$VideoDeviceName,

[Parameter()]
[System.Management.Automation.SwitchParameter]
$Confirm,

[Parameter()]
[System.String[]]
$Tags,

[Parameter()]
[System.String]
$FloorLabel,

[Parameter()]
[System.Object]
$Capacity,

[Parameter()]
[System.String]
$Label,

[Parameter()]
[System.Object]
$GeoCoordinates,

[Parameter()]
[System.Boolean]
$MTREnabled
)
}
function Set-PolicyTipConfig
{
[CmdletBinding()]
Expand Down Expand Up @@ -12516,8 +12613,6 @@ function Update-RoleGroupMember
)
}
#endregion


#region Microsoft.Graph.Applications
function Get-MgApplication
{
Expand Down

0 comments on commit ce9f4fd

Please sign in to comment.