Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ internal ApplicationPackageOperations(BatchManagementClient client)
public BatchManagementClient Client { get; private set; }

/// <summary>
/// Activates the specified application package.
/// Activates the specified application package. This should be done after the
/// `ApplicationPackage` was created and uploaded. This needs to be done before
/// an `ApplicationPackage` can be used on Pools or Tasks
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group that contains the Batch account.
Expand Down Expand Up @@ -329,7 +331,10 @@ internal ApplicationPackageOperations(BatchManagementClient client)
}

/// <summary>
/// Creates an application package record.
/// Creates an application package record. The record contains the SAS where
/// the package should be uploaded to. Once it is uploaded the
/// `ApplicationPackage` needs to be activated using `ApplicationPackageActive`
/// before it can be used.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group that contains the Batch account.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ namespace Microsoft.Azure.Management.Batch
public static partial class ApplicationPackageOperationsExtensions
{
/// <summary>
/// Activates the specified application package.
/// Activates the specified application package. This should be done after the
/// `ApplicationPackage` was created and uploaded. This needs to be done before
/// an `ApplicationPackage` can be used on Pools or Tasks
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -48,7 +50,9 @@ public static ApplicationPackage Activate(this IApplicationPackageOperations ope
}

/// <summary>
/// Activates the specified application package.
/// Activates the specified application package. This should be done after the
/// `ApplicationPackage` was created and uploaded. This needs to be done before
/// an `ApplicationPackage` can be used on Pools or Tasks
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down Expand Up @@ -80,7 +84,10 @@ public static ApplicationPackage Activate(this IApplicationPackageOperations ope
}

/// <summary>
/// Creates an application package record.
/// Creates an application package record. The record contains the SAS where
/// the package should be uploaded to. Once it is uploaded the
/// `ApplicationPackage` needs to be activated using `ApplicationPackageActive`
/// before it can be used.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -103,7 +110,10 @@ public static ApplicationPackage Create(this IApplicationPackageOperations opera
}

/// <summary>
/// Creates an application package record.
/// Creates an application package record. The record contains the SAS where
/// the package should be uploaded to. Once it is uploaded the
/// `ApplicationPackage` needs to be activated using `ApplicationPackageActive`
/// before it can be used.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ namespace Microsoft.Azure.Management.Batch
public partial interface IApplicationPackageOperations
{
/// <summary>
/// Activates the specified application package.
/// Activates the specified application package. This should be done
/// after the `ApplicationPackage` was created and uploaded. This needs
/// to be done before an `ApplicationPackage` can be used on Pools or
/// Tasks
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group that contains the Batch account.
Expand Down Expand Up @@ -59,7 +62,10 @@ public partial interface IApplicationPackageOperations
/// </exception>
Task<AzureOperationResponse<ApplicationPackage>> ActivateWithHttpMessagesAsync(string resourceGroupName, string accountName, string applicationName, string versionName, string format, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an application package record.
/// Creates an application package record. The record contains the SAS
/// where the package should be uploaded to. Once it is uploaded the
/// `ApplicationPackage` needs to be activated using
/// `ApplicationPackageActive` before it can be used.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group that contains the Batch account.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public Pool()
/// For information about available sizes of virtual machines for Cloud
/// Services pools (pools created with cloudServiceConfiguration), see
/// Sizes for Cloud Services
/// (http://azure.microsoft.com/documentation/articles/cloud-services-sizes-specs/).
/// (https://azure.microsoft.com/documentation/articles/cloud-services-sizes-specs/).
/// Batch supports all Cloud Services VM sizes except ExtraSmall. For
/// information about available VM sizes for pools using images from
/// the Virtual Machines Marketplace (pools created with
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,5 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_BatchManagement
}.AsEnumerable();
}
}
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "latest";
public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283";
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\work\\github\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
public static readonly String GithubCommidId = "ad759850354ddb7b4ffea0a49b70243fd9ec5a42";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
}
}