exports/Invoke-CVPreviewApplicationGroup.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
API to preview application content
.Description
API to preview application content
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Commvault.Powershell.Models.IKubernetesApplicationGroupPreviewReq
.Outputs
Commvault.Powershell.Models.IGenericResp
.Outputs
Commvault.Powershell.Models.IKubernetesApplicationGroupPreviewResp
.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.
 
BODY <IKubernetesApplicationGroupPreviewReq>: Application Group Preview Request
  [ContentApplications <IKubernetesContentApplications[]>]: List of applications to be added as content
    Guid <String>: GUID value of the Kubernetes Application to be associated as content
    Type <String>: Type of the Kubernetes application
    [Name <String>]: Name of the application
  [ContentLabelSelectors <IKubernetesContentSelectors[]>]: List of label selectors to be added as content
    SelectorLevel <String>: Selector level of the label selector
    SelectorValue <String>: Value of the label selector in key=value format
  [FilterApplications <IKubernetesContentApplications[]>]: List of applications to be added as content
  [FilterLabelSelectors <IKubernetesContentSelectors[]>]: List of label selectors to be added as content
  [FilterSkipStatelessApps <Boolean?>]: Specify whether to skip backup of stateless applications
 
CONTENTAPPLICATIONS <IKubernetesContentApplications[]>: List of applications to be added as content
  Guid <String>: GUID value of the Kubernetes Application to be associated as content
  Type <String>: Type of the Kubernetes application
  [Name <String>]: Name of the application
 
CONTENTLABELSELECTORS <IKubernetesContentSelectors[]>: List of label selectors to be added as content
  SelectorLevel <String>: Selector level of the label selector
  SelectorValue <String>: Value of the label selector in key=value format
 
FILTERAPPLICATIONS <IKubernetesContentApplications[]>: List of applications to be added as content
  Guid <String>: GUID value of the Kubernetes Application to be associated as content
  Type <String>: Type of the Kubernetes application
  [Name <String>]: Name of the application
 
FILTERLABELSELECTORS <IKubernetesContentSelectors[]>: List of label selectors to be added as content
  SelectorLevel <String>: Selector level of the label selector
  SelectorValue <String>: Value of the label selector in key=value format
.Link
https://docs.microsoft.com/en-us/powershell/module/commvaultpowershell/invoke-cvpreviewapplicationgroup
#>

function Invoke-CVPreviewApplicationGroup {
[OutputType([Commvault.Powershell.Models.IKubernetesApplicationGroupPreviewResp], [Commvault.Powershell.Models.IGenericResp])]
[CmdletBinding(DefaultParameterSetName='PreviewExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
    [Parameter(Mandatory)]
    [Commvault.Powershell.Category('Query')]
    [System.Int64]
    # clusterId of the Kubernetes client to do a Preview
    ${ClusterId},

    [Parameter(ParameterSetName='Preview', Mandatory, ValueFromPipeline)]
    [Commvault.Powershell.Category('Body')]
    [Commvault.Powershell.Models.IKubernetesApplicationGroupPreviewReq]
    # Application Group Preview Request
    # To construct, see NOTES section for BODY properties and create a hash table.
    ${Body},

    [Parameter(ParameterSetName='PreviewExpanded')]
    [Commvault.Powershell.Category('Body')]
    [Commvault.Powershell.Models.IKubernetesContentApplications[]]
    # List of applications to be added as content
    # To construct, see NOTES section for CONTENTAPPLICATIONS properties and create a hash table.
    ${ContentApplications},

    [Parameter(ParameterSetName='PreviewExpanded')]
    [Commvault.Powershell.Category('Body')]
    [Commvault.Powershell.Models.IKubernetesContentSelectors[]]
    # List of label selectors to be added as content
    # To construct, see NOTES section for CONTENTLABELSELECTORS properties and create a hash table.
    ${ContentLabelSelectors},

    [Parameter(ParameterSetName='PreviewExpanded')]
    [Commvault.Powershell.Category('Body')]
    [Commvault.Powershell.Models.IKubernetesContentApplications[]]
    # List of applications to be added as content
    # To construct, see NOTES section for FILTERAPPLICATIONS properties and create a hash table.
    ${FilterApplications},

    [Parameter(ParameterSetName='PreviewExpanded')]
    [Commvault.Powershell.Category('Body')]
    [Commvault.Powershell.Models.IKubernetesContentSelectors[]]
    # List of label selectors to be added as content
    # To construct, see NOTES section for FILTERLABELSELECTORS properties and create a hash table.
    ${FilterLabelSelectors},

    [Parameter(ParameterSetName='PreviewExpanded')]
    [Commvault.Powershell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # Specify whether to skip backup of stateless applications
    ${FilterSkipStatelessApps},

    [Parameter(DontShow)]
    [Commvault.Powershell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Commvault.Powershell.Category('Runtime')]
    [Commvault.Powershell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Commvault.Powershell.Category('Runtime')]
    [Commvault.Powershell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Commvault.Powershell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Commvault.Powershell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Commvault.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 = @{
            Preview = 'CommvaultPowershell.private\Invoke-CVPreviewApplicationGroup_Preview';
            PreviewExpanded = 'CommvaultPowershell.private\Invoke-CVPreviewApplicationGroup_PreviewExpanded';
        }
        $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
    }
}
}