Skip to content

Commit

Permalink
Generated from dbeec79a1c0750f94a0edf7ee4fe49b2cf75bf0b
Browse files Browse the repository at this point in the history
Merge pull request #48 from leonardbf/ANF-567-add-API-2019-11-01

ANF-567 add new API 2019-11-01
  • Loading branch information
SDK Automation committed Jan 24, 2020
1 parent fe11de0 commit 2dd34d1
Show file tree
Hide file tree
Showing 22 changed files with 2,281 additions and 865 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,6 @@ public partial class AzureNetAppFilesManagementClient : ServiceClient<AzureNetAp
/// </summary>
public virtual IVolumesOperations Volumes { get; private set; }

/// <summary>
/// Gets the IMountTargetsOperations.
/// </summary>
public virtual IMountTargetsOperations MountTargets { get; private set; }

/// <summary>
/// Gets the ISnapshotsOperations.
/// </summary>
Expand Down Expand Up @@ -357,10 +352,9 @@ private void Initialize()
Accounts = new AccountsOperations(this);
Pools = new PoolsOperations(this);
Volumes = new VolumesOperations(this);
MountTargets = new MountTargetsOperations(this);
Snapshots = new SnapshotsOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
ApiVersion = "2019-10-01";
ApiVersion = "2019-11-01";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,6 @@ public partial interface IAzureNetAppFilesManagementClient : System.IDisposable
/// </summary>
IVolumesOperations Volumes { get; }

/// <summary>
/// Gets the IMountTargetsOperations.
/// </summary>
IMountTargetsOperations MountTargets { get; }

/// <summary>
/// Gets the ISnapshotsOperations.
/// </summary>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,40 @@ public partial interface IPoolsOperations
/// </exception>
Task<AzureOperationResponse<CapacityPool>> BeginCreateOrUpdateWithHttpMessagesAsync(CapacityPool body, string resourceGroupName, string accountName, string poolName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Update a capacity pool
/// </summary>
/// <remarks>
/// Patch the specified capacity pool
/// </remarks>
/// <param name='body'>
/// Capacity pool object supplied in the body of the operation.
/// </param>
/// <param name='resourceGroupName'>
/// The name of the resource group.
/// </param>
/// <param name='accountName'>
/// The name of the NetApp account
/// </param>
/// <param name='poolName'>
/// The name of the capacity pool
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="Microsoft.Rest.Azure.CloudException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="Microsoft.Rest.SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
Task<AzureOperationResponse<CapacityPool>> BeginUpdateWithHttpMessagesAsync(CapacityPoolPatch body, string resourceGroupName, string accountName, string poolName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Delete a capacity pool
/// </summary>
/// <remarks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public partial interface ISnapshotsOperations
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
Task<AzureOperationResponse<Snapshot>> UpdateWithHttpMessagesAsync(SnapshotPatch body, string resourceGroupName, string accountName, string poolName, string volumeName, string snapshotName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
Task<AzureOperationResponse<Snapshot>> UpdateWithHttpMessagesAsync(object body, string resourceGroupName, string accountName, string poolName, string volumeName, string snapshotName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Delete a snapshot
/// </summary>
Expand Down Expand Up @@ -249,6 +249,46 @@ public partial interface ISnapshotsOperations
/// </exception>
Task<AzureOperationResponse<Snapshot>> BeginCreateWithHttpMessagesAsync(Snapshot body, string resourceGroupName, string accountName, string poolName, string volumeName, string snapshotName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Update a snapshot
/// </summary>
/// <remarks>
/// Patch a snapshot
/// </remarks>
/// <param name='body'>
/// Snapshot object supplied in the body of the operation.
/// </param>
/// <param name='resourceGroupName'>
/// The name of the resource group.
/// </param>
/// <param name='accountName'>
/// The name of the NetApp account
/// </param>
/// <param name='poolName'>
/// The name of the capacity pool
/// </param>
/// <param name='volumeName'>
/// The name of the volume
/// </param>
/// <param name='snapshotName'>
/// The name of the mount target
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="Microsoft.Rest.Azure.CloudException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="Microsoft.Rest.SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
Task<AzureOperationResponse<Snapshot>> BeginUpdateWithHttpMessagesAsync(object body, string resourceGroupName, string accountName, string poolName, string volumeName, string snapshotName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Delete a snapshot
/// </summary>
/// <remarks>
Expand Down
Loading

0 comments on commit 2dd34d1

Please sign in to comment.