< Back

Set-IscProperty

Fri Jan 10, 2020 9:08 pm

NAME Set-IscProperty



SYNOPSIS

Overwrite the value that is imported





SYNTAX

Set-IscProperty [-iscProperties] <Hashtable> [-newSsisFolderName <String>] [-newSsisProjectName <String>]

[-newSsisEnvironmentName <String>] [-newSsisEnvironmentDescription <String>] [<CommonParameters>]





DESCRIPTION

Internal function

All properties are inherited from the publish json file,

but there may come a time when we need to overwrite it (when testing)

or through Octopus step templates (using UI in fields)

This is called internally by other functions when

parameter is added to callingsomething like "publish-ssisFolder"





PARAMETERS

-iscProperties <Hashtable>

The hash table that we are altering a property of.



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



-newSsisFolderName <String>

Optional parameter. Updated value of parameter.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-newSsisProjectName <String>

Optional parameter. Updated value of parameter.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-newSsisEnvironmentName <String>

Optional parameter. Updated value of parameter.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-newSsisEnvironmentDescription <String>

Optional parameter. Updated value of parameter.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>if ($ssisFolderName) {



$ssisProperties = Set-IscProperty -iscProperties $ssisProperties -newSsisFolderName $ssisFolderName

}











RELATED LINKS