Skip to content

Commit

Permalink
Restore stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
Borgquite committed Dec 17, 2024
1 parent 1de2dc1 commit a728347
Showing 1 changed file with 150 additions and 1 deletion.
151 changes: 150 additions & 1 deletion Tests/Unit/Stubs/Microsoft365.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -104707,6 +104707,156 @@ function Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest
)
}
#endregion

#region TeamsProtectionPolicy
function Get-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.Object]
$Identity
)
}

function New-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String]
$HighConfidencePhishQuarantineTag,

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

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

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

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

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

function Set-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String]
$AdminDisplayName,

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

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

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

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

[Parameter()]
[System.Management.Automation.SwitchParameter]
$Confirm
)
}
#endregion

#region TeamsProtectionPolicy
function Get-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.Object]
$Identity
)
}

function New-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String]
$HighConfidencePhishQuarantineTag,

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

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

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

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

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

function Set-TeamsProtectionPolicy
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String]
$AdminDisplayName,

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

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

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

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

[Parameter()]
[System.Management.Automation.SwitchParameter]
$Confirm
)
}
#endregion
#region MgBetaDeviceManagementRoleScopeTagAssignment
function Get-MgBetaDeviceManagementRoleScopeTagAssignment
{
Expand Down Expand Up @@ -105288,4 +105438,3 @@ function Update-MgDeviceManagementDeviceConfigurationAssignment
}

#endregion

0 comments on commit a728347

Please sign in to comment.