Пример #1
0
 /// <summary>
 /// Initializes a new instance of the DeploymentExtendedInner 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 DeploymentExtendedInner(string name, string id = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Id = id;
     Name = name;
     Properties = properties;
     CustomInit();
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the DeploymentExtendedInner class.
 /// </summary>
 /// <param name="location">the location of the deployment.</param>
 /// <param name="properties">Deployment properties.</param>
 public DeploymentExtendedInner(string id = default(string), string name = default(string), string type = default(string), string location = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
     : base(location, id, name, type)
 {
     Properties = properties;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the DeploymentValidateResultInner
 /// class.
 /// </summary>
 /// <param name="error">Validation error.</param>
 /// <param name="properties">The template deployment
 /// properties.</param>
 public DeploymentValidateResultInner(ResourceManagementErrorWithDetails error = default(ResourceManagementErrorWithDetails), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Error      = error;
     Properties = properties;
     CustomInit();
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the DeploymentValidateResultInner
 /// class.
 /// </summary>
 /// <param name="error">The deployment validation error.</param>
 /// <param name="properties">The template deployment
 /// properties.</param>
 public DeploymentValidateResultInner(ErrorResponse error = default(ErrorResponse), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
 {
     Error      = error;
     Properties = properties;
     CustomInit();
 }
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the DeploymentExtendedInner class.
 /// </summary>
 /// <param name="properties">Deployment properties.</param>
 public DeploymentExtendedInner(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended))
     : base(location, id, name, type, tags)
 {
     Properties = properties;
     CustomInit();
 }