WorkerPool Constructors

Definition

Overloads

WorkerPool()

Initializes a new instance of the WorkerPool class.

WorkerPool(Nullable<Int32>, Nullable<ComputeModeOptions>, String, Nullable<Int32>, IList<String>)

Initializes a new instance of the WorkerPool class.

WorkerPool()

Initializes a new instance of the WorkerPool class.

public WorkerPool ();
Public Sub New ()

Applies to

WorkerPool(Nullable<Int32>, Nullable<ComputeModeOptions>, String, Nullable<Int32>, IList<String>)

Initializes a new instance of the WorkerPool class.

public WorkerPool (int? workerSizeId = default, Microsoft.Azure.Management.AppService.Fluent.Models.ComputeModeOptions? computeMode = default, string workerSize = default, int? workerCount = default, System.Collections.Generic.IList<string> instanceNames = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.WorkerPool : Nullable<int> * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.ComputeModeOptions> * string * Nullable<int> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.AppService.Fluent.Models.WorkerPool
Public Sub New (Optional workerSizeId As Nullable(Of Integer) = Nothing, Optional computeMode As Nullable(Of ComputeModeOptions) = Nothing, Optional workerSize As String = Nothing, Optional workerCount As Nullable(Of Integer) = Nothing, Optional instanceNames As IList(Of String) = Nothing)

Parameters

workerSizeId
Nullable<Int32>

Worker size ID for referencing this worker pool.

computeMode
Nullable<ComputeModeOptions>

Shared or dedicated app hosting. Possible values include: 'Shared', 'Dedicated', 'Dynamic'

workerSize
String

VM size of the worker pool instances.

workerCount
Nullable<Int32>

Number of instances in the worker pool.

instanceNames
IList<String>

Names of all instances in the worker pool (read only).

Applies to