Class ServiceUnitArtifacts
Defines the artifacts of a service unit.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.DeploymentManager.dll
Syntax
public class ServiceUnitArtifacts
Constructors
ServiceUnitArtifacts()
Initializes a new instance of the ServiceUnitArtifacts class.
Declaration
public ServiceUnitArtifacts ();
ServiceUnitArtifacts(String, String, String, String)
Initializes a new instance of the ServiceUnitArtifacts class.
Declaration
public ServiceUnitArtifacts (string templateUri = null, string parametersUri = null, string templateArtifactSourceRelativePath = null, string parametersArtifactSourceRelativePath = null);
Parameters
|
String
templateUri
The full URI of the ARM template file with the SAS token. |
|
String
parametersUri
The full URI of the ARM parameters file with the SAS token. |
|
String
templateArtifactSourceRelativePath
The path to the ARM template file relative to the artifact source. |
|
String
parametersArtifactSourceRelativePath
The path to the ARM parameters file relative to the artifact source. |
Properties
ParametersArtifactSourceRelativePath
Gets or sets the path to the ARM parameters file relative to the artifact source.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="parametersArtifactSourceRelativePath")]
public string ParametersArtifactSourceRelativePath { get; set; }
Property Value
|
String
|
ParametersUri
Gets or sets the full URI of the ARM parameters file with the SAS token.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="parametersUri")]
public string ParametersUri { get; set; }
Property Value
|
String
|
TemplateArtifactSourceRelativePath
Gets or sets the path to the ARM template file relative to the artifact source.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="templateArtifactSourceRelativePath")]
public string TemplateArtifactSourceRelativePath { get; set; }
Property Value
|
String
|
TemplateUri
Gets or sets the full URI of the ARM template file with the SAS token.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="templateUri")]
public string TemplateUri { get; set; }
Property Value
|
String
|