Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the HybridRunbookWorkerGroup class.
 /// </summary>
 /// <param name="id">Gets or sets the id of the resource.</param>
 /// <param name="name">Gets or sets the name of the group.</param>
 /// <param name="hybridRunbookWorkers">Gets or sets the list of hybrid
 /// runbook workers.</param>
 /// <param name="credential">Sets the credential of a worker
 /// group.</param>
 /// <param name="groupType">Type of the HybridWorkerGroup. Possible
 /// values include: 'User', 'System'</param>
 public HybridRunbookWorkerGroup(string id = default(string), string name = default(string), IList <HybridRunbookWorker> hybridRunbookWorkers = default(IList <HybridRunbookWorker>), RunAsCredentialAssociationProperty credential = default(RunAsCredentialAssociationProperty), string groupType = default(string))
 {
     Id   = id;
     Name = name;
     HybridRunbookWorkers = hybridRunbookWorkers;
     Credential           = credential;
     GroupType            = groupType;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the HybridRunbookWorkerGroup class.
 /// </summary>
 /// <param name="id">Gets or sets the id of the resource.</param>
 /// <param name="name">Gets or sets the name of the group.</param>
 /// <param name="type">The type of the resource.</param>
 /// <param name="hybridRunbookWorkers">Gets or sets the list of hybrid
 /// runbook workers.</param>
 /// <param name="credential">Sets the credential of a worker
 /// group.</param>
 /// <param name="groupType">Type of the HybridWorkerGroup. Possible
 /// values include: 'User', 'System'</param>
 /// <param name="systemData">Resource system metadata.</param>
 public HybridRunbookWorkerGroup(string id = default(string), string name = default(string), string type = default(string), IList <HybridRunbookWorkerLegacy> hybridRunbookWorkers = default(IList <HybridRunbookWorkerLegacy>), RunAsCredentialAssociationProperty credential = default(RunAsCredentialAssociationProperty), string groupType = default(string), SystemData systemData = default(SystemData))
 {
     Id   = id;
     Name = name;
     Type = type;
     HybridRunbookWorkers = hybridRunbookWorkers;
     Credential           = credential;
     GroupType            = groupType;
     SystemData           = systemData;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the
 /// HybridRunbookWorkerGroupCreateOrUpdateParameters class.
 /// </summary>
 /// <param name="credential">Sets the credential of a worker
 /// group.</param>
 public HybridRunbookWorkerGroupCreateOrUpdateParameters(RunAsCredentialAssociationProperty credential = default(RunAsCredentialAssociationProperty))
 {
     Credential = credential;
     CustomInit();
 }