Condividi tramite


ArtifactSourcePropertiesModel Constructors

Definition

Overloads

ArtifactSourcePropertiesModel()

Initializes a new instance of the ArtifactSourcePropertiesModel class.

ArtifactSourcePropertiesModel(String, Authentication, String)

Initializes a new instance of the ArtifactSourcePropertiesModel class.

ArtifactSourcePropertiesModel()

Initializes a new instance of the ArtifactSourcePropertiesModel class.

public ArtifactSourcePropertiesModel ();
Public Sub New ()

Applies to

ArtifactSourcePropertiesModel(String, Authentication, String)

Initializes a new instance of the ArtifactSourcePropertiesModel class.

public ArtifactSourcePropertiesModel (string sourceType, Microsoft.Azure.Management.DeploymentManager.Models.Authentication authentication, string artifactRoot = default);
new Microsoft.Azure.Management.DeploymentManager.Models.ArtifactSourcePropertiesModel : string * Microsoft.Azure.Management.DeploymentManager.Models.Authentication * string -> Microsoft.Azure.Management.DeploymentManager.Models.ArtifactSourcePropertiesModel
Public Sub New (sourceType As String, authentication As Authentication, Optional artifactRoot As String = Nothing)

Parameters

sourceType
String

The type of artifact source used.

authentication
Authentication

The authentication method to use to access the artifact source.

artifactRoot
String

The path from the location that the 'authentication' property [say, a SAS URI to the blob container] refers to, to the location of the artifacts. This can be used to differentiate different versions of the artifacts. Or, different types of artifacts like binaries or templates. The location referenced by the authentication property concatenated with this optional artifactRoot path forms the artifact source location where the artifacts are expected to be found.

Applies to