Esempio n. 1
0
        public ArmDeploymentInput(ArmDeploymentProperties properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
            Tags       = new ChangeTrackingDictionary <string, string>();
        }
Esempio n. 2
0
        internal ScopedDeployment(string location, ArmDeploymentProperties properties)
        {
            if (location == null)
            {
                throw new ArgumentNullException(nameof(location));
            }
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Location   = location;
            Properties = properties;
            Tags       = new ChangeTrackingDictionary <string, string>();
        }