exports/New-CVKuberneteApplicationGroup.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 create new Kubernetes application group
.Description
API to create new Kubernetes application group
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Outputs
Commvault.Powershell.Models.IGenericResp
.Outputs
Commvault.Powershell.Models.IIdName
.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.
 
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/new-cvkuberneteapplicationgroup
#>

function New-CVKuberneteApplicationGroup {
[OutputType([Commvault.Powershell.Models.IIdName], [Commvault.Powershell.Models.IGenericResp])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.Int64]
    # .
    ${ClusterId},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.String]
    # .
    ${ClusterName},

    [Parameter()]
    [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()]
    [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()]
    [Commvault.Powershell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # Specifies whether content has to be overwritten or appended
    ${ContentOverwrite},

    [Parameter()]
    [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()]
    [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()]
    [Commvault.Powershell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # Specifies whether content has to be overwritten or appended
    ${FilterOverwrite},

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

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.String]
    # Specify new name to rename an Application Group
    ${Name},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.Int64]
    # .
    ${PlanId},

    [Parameter()]
    [Commvault.Powershell.Category('Body')]
    [System.String]
    # .
    ${PlanName},

    [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 = @{
            CreateExpanded = 'CommvaultPowershell.private\New-CVKuberneteApplicationGroup_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
    }
}
}