/// <summary> /// Initializes a new instance of the DeploymentValidateResult class. /// </summary> /// <param name="error">Validation error.</param> /// <param name="properties">The template deployment /// properties.</param> public DeploymentValidateResult(ResourceManagementErrorWithDetails error = default(ResourceManagementErrorWithDetails), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) { Error = error; Properties = properties; }
/// <summary> /// Initializes a new instance of the DeploymentExtended class. /// </summary> /// <param name="name">The name of the deployment.</param> /// <param name="id">The ID of the deployment.</param> /// <param name="properties">Deployment properties.</param> public DeploymentExtended(string name, string id = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) { Id = id; Name = name; Properties = properties; }