Property | Type | Description | |
---|---|---|---|
CustomInit | void |
Method | Description | |
---|---|---|
PlanGroupModel ( ) : Microsoft.Rest |
Initializes a new instance of the PlanGroupModel class.
|
|
PlanGroupModel ( string name, string method, string description = default(string), int? parallelPlanCount = default(int?), AvePoint.Migration.Api.Models.ScheduleModel schedule = default(ScheduleModel), IList plans = default(IList<string>) ) : Microsoft.Rest |
Initializes a new instance of the PlanGroupModel class.
|
|
Validate ( ) : void |
Validate the object.
|
Method | Description | |
---|---|---|
CustomInit ( ) : void |
An initialization method that performs custom operations like setting defaults
|
public PlanGroupModel ( string name, string method, string description = default(string), int? parallelPlanCount = default(int?), AvePoint.Migration.Api.Models.ScheduleModel schedule = default(ScheduleModel), IList plans = default(IList<string>) ) : Microsoft.Rest | ||
name | string | Name of the plan group. |
method | string | Choose a group type to run the plans in the /// plan group. /// "Parallel" will run multiple plans simultaneously according to the /// specified concurrent plan count. /// "Sequential" will run the plans according to their order in the /// plan group. /// Possible values include: ['Parallel', 'Sequential']. Possible /// values include: 'Parallel', 'Sequential' |
description | string | Description of the plan group. |
parallelPlanCount | int? | Specify the number of the /// concurrent plans. /// Concurrent plan allows you to simultaneously run multiple plans in /// one plan group. |
schedule | AvePoint.Migration.Api.Models.ScheduleModel | The schedule of the plan groups. |
plans | IList | The list of the plan id. /// The plans will be managed by this plan group, and the plan /// schedules will be disabled. |
return | Microsoft.Rest |