C# Класс AvePoint.Migration.Api.Models.PlanGroupModel

Показать файл Открыть проект

Private Properties

Свойство Тип Описание
CustomInit void

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
CustomInit ( ) : void

An initialization method that performs custom operations like setting defaults

Описание методов

PlanGroupModel() публичный Метод

Initializes a new instance of the PlanGroupModel class.
public PlanGroupModel ( ) : Microsoft.Rest
Результат Microsoft.Rest

PlanGroupModel() публичный Метод

Initializes a new instance of the PlanGroupModel class.
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.
Результат Microsoft.Rest

Validate() публичный Метод

Validate the object.
/// Thrown if validation fails ///
public Validate ( ) : void
Результат void