BatchPoolReplaceContent Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of BatchPoolReplaceContent.
public BatchPoolReplaceContent(System.Collections.Generic.IEnumerable<Azure.Compute.Batch.BatchCertificateReference> certificateReferences, System.Collections.Generic.IEnumerable<Azure.Compute.Batch.BatchApplicationPackageReference> applicationPackageReferences, System.Collections.Generic.IEnumerable<Azure.Compute.Batch.MetadataItem> metadata);
new Azure.Compute.Batch.BatchPoolReplaceContent : seq<Azure.Compute.Batch.BatchCertificateReference> * seq<Azure.Compute.Batch.BatchApplicationPackageReference> * seq<Azure.Compute.Batch.MetadataItem> -> Azure.Compute.Batch.BatchPoolReplaceContent
Public Sub New (certificateReferences As IEnumerable(Of BatchCertificateReference), applicationPackageReferences As IEnumerable(Of BatchApplicationPackageReference), metadata As IEnumerable(Of MetadataItem))
Parameters
- certificateReferences
- IEnumerable<BatchCertificateReference>
This list replaces any existing Certificate references configured on the Pool. If you specify an empty collection, any existing Certificate references are removed from the Pool. For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. Warning: This property is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.
- applicationPackageReferences
- IEnumerable<BatchApplicationPackageReference>
The list of Application Packages to be installed on each Compute Node in the Pool. The list replaces any existing Application Package references on the Pool. Changes to Application Package references affect all new Compute Nodes joining the Pool, but do not affect Compute Nodes that are already in the Pool until they are rebooted or reimaged. There is a maximum of 10 Application Package references on any given Pool. If omitted, or if you specify an empty collection, any existing Application Packages references are removed from the Pool. A maximum of 10 references may be specified on a given Pool.
- metadata
- IEnumerable<MetadataItem>
A list of name-value pairs associated with the Pool as metadata. This list replaces any existing metadata configured on the Pool. If omitted, or if you specify an empty collection, any existing metadata is removed from the Pool.
Exceptions
certificateReferences
, applicationPackageReferences
or metadata
is null.
Applies to
Azure SDK for .NET