Example #1
0
        public DeploymentWhatIf(DeploymentWhatIfProperties properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
        }
Example #2
0
        public ScopedDeploymentWhatIf(string location, DeploymentWhatIfProperties properties)
        {
            if (location == null)
            {
                throw new ArgumentNullException(nameof(location));
            }
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Location   = location;
            Properties = properties;
        }
Example #3
0
 internal DeploymentWhatIf(string location, DeploymentWhatIfProperties properties)
 {
     Location   = location;
     Properties = properties;
 }