exports/Update-CVMissedSLA.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
Initiates backup job for subclients with missed SLA.
.Description
Initiates backup job for subclients with missed SLA.
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
System.Object
.Outputs
Outputs [PSCustomObject] for each subclient with missed SLA, containing job submission result.
.Link
https://docs.microsoft.com/en-us/powershell/module/commvaultpowershell/update-cvmissedsla
#>

function Update-CVMissedSLA {
[Alias('Protect-CVMissedSLA')]
[CmdletBinding(DefaultParameterSetName='Default', PositionalBinding=$false)]
param(
    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.String]
    # EmailAddr for notification purpose.
    ${EmailAddr},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.Int32]
    # Client = 1 (default), Agent = 2.
    ${Type},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.Int32]
    # Any = 0, Protected = 1, Failed = 2 (default), NoJobFound = 3, NoSchedule = 4.
    ${Category},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.Int32]
    # Any = 0, Protected = 1, Unprotected = 2 (default), Excluded = 3.
    ${Status},

    [Parameter(ParameterSetName='ByName')]
    [Commvault.Powershell.Category('Body')]
    [System.String]
    # Filter SLA report by ClientName.
    ${ClientName},

    [Parameter(ParameterSetName='ById')]
    [Commvault.Powershell.Category('Body')]
    [System.Int32]
    # Filter SLA report by ClientId.
    ${ClientId},

    [Parameter(ParameterSetName='ByObject', ValueFromPipeline, ValueFromPipelineByPropertyName)]
    [Commvault.Powershell.Category('Body')]
    [System.Object]
    # Filter SLA report by piped ClientObject.
    ${ClientObject}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Default = 'CommvaultPowershell.custom\Update-CVMissedSLA';
            ByName = 'CommvaultPowershell.custom\Update-CVMissedSLA';
            ById = 'CommvaultPowershell.custom\Update-CVMissedSLA';
            ByObject = 'CommvaultPowershell.custom\Update-CVMissedSLA';
        }
        $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
    }
}
}