/// <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="location">the location of the deployment.</param>
 /// <param name="properties">Deployment properties.</param>
 public DeploymentExtended(string name, string id = default(string), string location = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Id         = id;
     Name       = name;
     Location   = location;
     Properties = properties;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the DeploymentExtended class.
 /// </summary>
 /// <param name="id">The ID of the deployment.</param>
 /// <param name="name">The name of the deployment.</param>
 /// <param name="type">The type of the deployment.</param>
 /// <param name="location">the location of the deployment.</param>
 /// <param name="properties">Deployment properties.</param>
 /// <param name="tags">Deployment tags</param>
 public DeploymentExtended(string id = default(string), string name = default(string), string type = default(string), string location = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended), IDictionary <string, string> tags = default(IDictionary <string, string>))
 {
     Id         = id;
     Name       = name;
     Type       = type;
     Location   = location;
     Properties = properties;
     Tags       = tags;
     CustomInit();
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the DeploymentValidateResult class.
 /// </summary>
 /// <param name="error">The deployment validation error.</param>
 /// <param name="properties">The template deployment
 /// properties.</param>
 public DeploymentValidateResult(ErrorResponse error = default(ErrorResponse), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Error      = error;
     Properties = properties;
     CustomInit();
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the DeploymentValidateResult class.
 /// </summary>
 /// <param name="properties">The template deployment
 /// properties.</param>
 public DeploymentValidateResult(DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Properties = properties;
     CustomInit();
 }
Esempio n. 5
0
 /// <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;
     CustomInit();
 }
Esempio n. 6
0
 /// <summary>
 /// Initializes a new instance of the DeploymentExtended class.
 /// </summary>
 public DeploymentExtended(string name, string id = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Id         = id;
     Name       = name;
     Properties = properties;
 }