/// <summary>
 /// Initializes a new instance of the RestorePointCollection class.
 /// </summary>
 /// <param name="location">Resource location</param>
 /// <param name="id">Resource Id</param>
 /// <param name="name">Resource name</param>
 /// <param name="type">Resource type</param>
 /// <param name="tags">Resource tags</param>
 /// <param name="provisioningState">The provisioning state of the
 /// restore point collection.</param>
 /// <param name="restorePointCollectionId">The unique id of the restore
 /// point collection.</param>
 /// <param name="restorePoints">A list containing all restore points
 /// created under this restore point collection.</param>
 public RestorePointCollection(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), RestorePointCollectionSourceProperties source = default(RestorePointCollectionSourceProperties), string provisioningState = default(string), string restorePointCollectionId = default(string), IList <RestorePoint> restorePoints = default(IList <RestorePoint>))
     : base(location, id, name, type, tags)
 {
     Source                   = source;
     ProvisioningState        = provisioningState;
     RestorePointCollectionId = restorePointCollectionId;
     RestorePoints            = restorePoints;
     CustomInit();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the RestorePointCollectionUpdate
 /// class.
 /// </summary>
 /// <param name="tags">Resource tags</param>
 /// <param name="provisioningState">The provisioning state of the
 /// restore point collection.</param>
 /// <param name="restorePointCollectionId">The unique id of the restore
 /// point collection.</param>
 /// <param name="restorePoints">A list containing all restore points
 /// created under this restore point collection.</param>
 public RestorePointCollectionUpdate(IDictionary <string, string> tags = default(IDictionary <string, string>), RestorePointCollectionSourceProperties source = default(RestorePointCollectionSourceProperties), string provisioningState = default(string), string restorePointCollectionId = default(string), IList <RestorePoint> restorePoints = default(IList <RestorePoint>))
     : base(tags)
 {
     Source                   = source;
     ProvisioningState        = provisioningState;
     RestorePointCollectionId = restorePointCollectionId;
     RestorePoints            = restorePoints;
     CustomInit();
 }