Ejemplo n.º 1
0
 public static bool AzureResourceGroupExists(this ICakeContext context,
                                             Credentials credentials,
                                             string subscriptionId,
                                             string resourceGroupName)
 {
     return(AzureResourceGroupService.AzureResourceGroupExists(credentials,
                                                               subscriptionId,
                                                               resourceGroupName));
 }
Ejemplo n.º 2
0
 public static void DeleteAzureResourceGroup(this ICakeContext context,
                                             Credentials credentials,
                                             string subscriptionId,
                                             string resourceGroupName)
 {
     AzureResourceGroupService.DeleteAzureResourceGroup(context.Log,
                                                        credentials,
                                                        subscriptionId,
                                                        resourceGroupName);
 }
Ejemplo n.º 3
0
 public static void EnsureAzureResourceGroupExists(this ICakeContext context,
                                                   Credentials credentials,
                                                   string subscriptionId,
                                                   string resourceGroupName,
                                                   string resourceGroupLocation)
 {
     AzureResourceGroupService.EnsureAzureResourceGroupExists(context.Log,
                                                              credentials,
                                                              subscriptionId,
                                                              resourceGroupName,
                                                              resourceGroupLocation);
 }
Ejemplo n.º 4
0
 public static string DeployAzureResourceGroup(this ICakeContext context,
                                               Credentials credentials,
                                               string subscriptionId,
                                               string resourceGroupName,
                                               string deploymentName,
                                               string template,
                                               string parameters)
 {
     return(AzureResourceGroupService.DeployAzureResourceGroup(context.Log,
                                                               credentials,
                                                               subscriptionId,
                                                               resourceGroupName,
                                                               deploymentName,
                                                               template,
                                                               parameters));
 }