/// <summary>
 /// Initializes a new instance of the DeploymentProperties class.
 /// </summary>
 /// <param name="provisioningState">Gets the status of the resource at
 /// the time the operation was called. Possible values include:
 /// 'Accepted', 'Creating', 'Deleting', 'Moving', 'Failed',
 /// 'Succeeded'</param>
 public DeploymentProperties(string provisioningState = default(string), DeploymentModel model = default(DeploymentModel), DeploymentScaleSettings scaleSettings = default(DeploymentScaleSettings))
 {
     ProvisioningState = provisioningState;
     Model             = model;
     ScaleSettings     = scaleSettings;
     CustomInit();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the AccountModel class.
 /// </summary>
 /// <param name="format">Deployment model format.</param>
 /// <param name="name">Deployment model name.</param>
 /// <param name="version">Deployment model version.</param>
 /// <param name="baseModel">Base Model Identifier.</param>
 /// <param name="maxCapacity">The max capacity.</param>
 /// <param name="capabilities">The capabilities.</param>
 public AccountModel(string format = default(string), string name = default(string), string version = default(string), DeploymentModel baseModel = default(DeploymentModel), int?maxCapacity = default(int?), IDictionary <string, string> capabilities = default(IDictionary <string, string>), ModelDeprecationInfo deprecation = default(ModelDeprecationInfo), SystemData systemData = default(SystemData))
     : base(format, name, version)
 {
     BaseModel    = baseModel;
     MaxCapacity  = maxCapacity;
     Capabilities = capabilities;
     Deprecation  = deprecation;
     SystemData   = systemData;
     CustomInit();
 }