public DeploymentWhatIf(DeploymentWhatIfProperties properties) { if (properties == null) { throw new ArgumentNullException(nameof(properties)); } Properties = properties; }
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; }
internal DeploymentWhatIf(string location, DeploymentWhatIfProperties properties) { Location = location; Properties = properties; }