AgentPoolArtifactStreamingProfile Constructors

Definition

Overloads

Name Description
AgentPoolArtifactStreamingProfile()

Initializes a new instance of the AgentPoolArtifactStreamingProfile class.

AgentPoolArtifactStreamingProfile(Nullable<Boolean>)

Initializes a new instance of the AgentPoolArtifactStreamingProfile class.

AgentPoolArtifactStreamingProfile()

Initializes a new instance of the AgentPoolArtifactStreamingProfile class.

public AgentPoolArtifactStreamingProfile();
Public Sub New ()

Applies to

AgentPoolArtifactStreamingProfile(Nullable<Boolean>)

Initializes a new instance of the AgentPoolArtifactStreamingProfile class.

public AgentPoolArtifactStreamingProfile(bool? enabled = default);
new Microsoft.Azure.Management.ContainerService.Models.AgentPoolArtifactStreamingProfile : Nullable<bool> -> Microsoft.Azure.Management.ContainerService.Models.AgentPoolArtifactStreamingProfile
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing)

Parameters

enabled
Nullable<Boolean>

Artifact streaming speeds up the cold-start of containers on a node through on-demand image loading. To use this feature, container images must also enable artifact streaming on ACR. If not specified, the default is false.

Applies to