/// <summary>
 /// Asynchronously retrieves a storage password.
 /// </summary>
 /// <param name="name">
 /// Username identifying the storage password to be retrieved.
 /// </param>
 /// <returns>
 /// An object representing the storage password retrieved.
 /// </returns>
 /// <remarks>
 /// This method uses the <a href="http://goo.gl/HL3c0T">GET 
 /// storage/passwords/{name}</a> endpoint to construct the <see cref=
 /// "StoragePassword"/> it returns.
 /// </remarks>
 public async Task<StoragePassword> GetStoragePasswordAsync(string name)
 {
     var resource = new StoragePassword(this.Context, this.Namespace, name);
     await resource.GetAsync();
     return resource;
 }