Share via


PoolPatchParameter Constructors

Definition

Overloads

PoolPatchParameter()

Initializes a new instance of the PoolPatchParameter class.

PoolPatchParameter(StartTask, IList<CertificateReference>, IList<ApplicationPackageReference>, IList<MetadataItem>, Nullable<NodeCommunicationMode>)

Initializes a new instance of the PoolPatchParameter class.

PoolPatchParameter()

Source:
PoolPatchParameter.cs

Initializes a new instance of the PoolPatchParameter class.

public PoolPatchParameter ();
Public Sub New ()

Applies to

PoolPatchParameter(StartTask, IList<CertificateReference>, IList<ApplicationPackageReference>, IList<MetadataItem>, Nullable<NodeCommunicationMode>)

Source:
PoolPatchParameter.cs

Initializes a new instance of the PoolPatchParameter class.

public PoolPatchParameter (Microsoft.Azure.Batch.Protocol.Models.StartTask startTask = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> certificateReferences = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.ApplicationPackageReference> applicationPackageReferences = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> metadata = default, Microsoft.Azure.Batch.Protocol.Models.NodeCommunicationMode? targetNodeCommunicationMode = default);
new Microsoft.Azure.Batch.Protocol.Models.PoolPatchParameter : Microsoft.Azure.Batch.Protocol.Models.StartTask * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.ApplicationPackageReference> * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> * Nullable<Microsoft.Azure.Batch.Protocol.Models.NodeCommunicationMode> -> Microsoft.Azure.Batch.Protocol.Models.PoolPatchParameter
Public Sub New (Optional startTask As StartTask = Nothing, Optional certificateReferences As IList(Of CertificateReference) = Nothing, Optional applicationPackageReferences As IList(Of ApplicationPackageReference) = Nothing, Optional metadata As IList(Of MetadataItem) = Nothing, Optional targetNodeCommunicationMode As Nullable(Of NodeCommunicationMode) = Nothing)

Parameters

startTask
StartTask

A Task to run on each Compute Node as it joins the Pool. The Task runs when the Compute Node is added to the Pool or when the Compute Node is restarted.

certificateReferences
IList<CertificateReference>

A list of Certificates to be installed on each Compute Node in the Pool.

applicationPackageReferences
IList<ApplicationPackageReference>

A list of Packages to be installed on each Compute Node in the Pool.

metadata
IList<MetadataItem>

A list of name-value pairs associated with the Pool as metadata.

targetNodeCommunicationMode
Nullable<NodeCommunicationMode>

The desired node communication mode for the pool.

Applies to