예제 #1
0
 public DeploymentHelper(CredentialHelper credentials, string deploymentName,
                         string resourceGroupName,
                         string resourceGroupLocation)
     : this(
         credentials, deploymentName, resourceGroupName, resourceGroupLocation,
         "Data\\infrastructureParameter.json", "Data\\infrastructureTemplate.json")
 {
 }
예제 #2
0
 public DeploymentHelper(CredentialHelper credentials, string deploymentName,
                         string resourceGroupName,
                         string resourceGroupLocation,
                         string pathToParameterFile, string pathToTemplateFile)
 {
     this._credentials           = credentials;
     this._deploymentName        = deploymentName;
     this._resourceGroupName     = resourceGroupName;
     this._resourceGroupLocation = resourceGroupLocation;
     this._pathToParameterFile   = pathToParameterFile;
     this._pathToTemplateFile    = pathToTemplateFile;
 }
예제 #3
0
 public ComputeManager(CredentialHelper credentials)
 {
     this._credentials = credentials;
 }