├── .gitignore ├── AssistDeploy.nuspec ├── AssistDeploy ├── AssistDeploy.psd1 ├── AssistDeploy.psm1 └── Functions │ ├── AddIscProperty.ps1 │ ├── ConnectSsisdbSql.ps1 │ ├── DisconnectSsisdbSql.ps1 │ ├── EditSsisEnvironmentName.ps1 │ ├── GetSsisAsJson.ps1 │ ├── GetSsisProjectLsn.ps1 │ ├── GetVariableByType.ps1 │ ├── ImportJson.ps1 │ ├── InvokeValidateSsisProject.ps1 │ ├── NewIscProperties.ps1 │ ├── NewSsisVariable.ps1 │ ├── PublishSsisEnvironment.ps1 │ ├── PublishSsisEnvironmentReference.ps1 │ ├── PublishSsisFolder.ps1 │ ├── PublishSsisIspac.ps1 │ ├── PublishSsisVariables.ps1 │ ├── SetEnvironmentVariableProperty.ps1 │ ├── SetEnvironmentVariableProtection.ps1 │ ├── SetEnvironmentVariableValue.ps1 │ ├── SetIscProperty.ps1 │ ├── SetObjectParameterValue.ps1 │ ├── TestCurrentPermissions.ps1 │ ├── TestJson.ps1 │ ├── TestVariable.ps1 │ ├── TestVariablesForPublishProfile.ps1 │ ├── UnpublishSsisDeployment.ps1 │ ├── UnpublishSsisEnvironment.ps1 │ └── UnpublishSsisEnvironmentReference.ps1 ├── LICENSE ├── README.md └── scratch.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/.gitignore -------------------------------------------------------------------------------- /AssistDeploy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy.nuspec -------------------------------------------------------------------------------- /AssistDeploy/AssistDeploy.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/AssistDeploy.psd1 -------------------------------------------------------------------------------- /AssistDeploy/AssistDeploy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/AssistDeploy.psm1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/AddIscProperty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/AddIscProperty.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/ConnectSsisdbSql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/ConnectSsisdbSql.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/DisconnectSsisdbSql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/DisconnectSsisdbSql.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/EditSsisEnvironmentName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/EditSsisEnvironmentName.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/GetSsisAsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/GetSsisAsJson.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/GetSsisProjectLsn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/GetSsisProjectLsn.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/GetVariableByType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/GetVariableByType.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/ImportJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/ImportJson.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/InvokeValidateSsisProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/InvokeValidateSsisProject.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/NewIscProperties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/NewIscProperties.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/NewSsisVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/NewSsisVariable.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/PublishSsisEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/PublishSsisEnvironment.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/PublishSsisEnvironmentReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/PublishSsisEnvironmentReference.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/PublishSsisFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/PublishSsisFolder.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/PublishSsisIspac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/PublishSsisIspac.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/PublishSsisVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/PublishSsisVariables.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/SetEnvironmentVariableProperty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/SetEnvironmentVariableProperty.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/SetEnvironmentVariableProtection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/SetEnvironmentVariableProtection.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/SetEnvironmentVariableValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/SetEnvironmentVariableValue.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/SetIscProperty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/SetIscProperty.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/SetObjectParameterValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/SetObjectParameterValue.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/TestCurrentPermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/TestCurrentPermissions.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/TestJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/TestJson.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/TestVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/TestVariable.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/TestVariablesForPublishProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/TestVariablesForPublishProfile.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/UnpublishSsisDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/UnpublishSsisDeployment.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/UnpublishSsisEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/UnpublishSsisEnvironment.ps1 -------------------------------------------------------------------------------- /AssistDeploy/Functions/UnpublishSsisEnvironmentReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/AssistDeploy/Functions/UnpublishSsisEnvironmentReference.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/README.md -------------------------------------------------------------------------------- /scratch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabinio/AssistDeploy/HEAD/scratch.ps1 --------------------------------------------------------------------------------