/// <summary> /// Initializes a new instance of the DeploymentResourceProperties /// class. /// </summary> /// <param name="source">Uploaded source information of the /// deployment.</param> /// <param name="appName">App name of the deployment</param> /// <param name="deploymentSettings">Deployment settings of the /// Deployment</param> /// <param name="provisioningState">Provisioning state of the /// Deployment. Possible values include: 'Creating', 'Updating', /// 'Succeeded', 'Failed'</param> /// <param name="status">Status of the Deployment. Possible values /// include: 'Unknown', 'Stopped', 'Running', 'Failed', 'Allocating', /// 'Upgrading', 'Compiling'</param> /// <param name="active">Indicates whether the Deployment is /// active</param> /// <param name="createdTime">Date time when the resource is /// created</param> /// <param name="instances">Collection of instances belong to the /// Deployment</param> public DeploymentResourceProperties(UserSourceInfo source = default(UserSourceInfo), string appName = default(string), DeploymentSettings deploymentSettings = default(DeploymentSettings), string provisioningState = default(string), string status = default(string), bool?active = default(bool?), System.DateTime?createdTime = default(System.DateTime?), IList <DeploymentInstance> instances = default(IList <DeploymentInstance>)) { Source = source; AppName = appName; DeploymentSettings = deploymentSettings; ProvisioningState = provisioningState; Status = status; Active = active; CreatedTime = createdTime; Instances = instances; CustomInit(); }