/// <summary>
 /// Gets the properties of a storage account’s Blob service, including
 /// properties for Storage Analytics and CORS (Cross-Origin Resource Sharing)
 /// rules.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group within the user's subscription. The name is
 /// case insensitive.
 /// </param>
 /// <param name='accountName'>
 /// The name of the storage account within the specified resource group.
 /// Storage account names must be between 3 and 24 characters in length and use
 /// numbers and lower-case letters only.
 /// </param>
 public static BlobServiceProperties GetServiceProperties(this IBlobServicesOperations operations, string resourceGroupName, string accountName)
 {
     return(operations.GetServicePropertiesAsync(resourceGroupName, accountName).GetAwaiter().GetResult());
 }
Exemple #2
0
        protected override async Task <BlobServicePropertiesInner> GetInnerAsync(CancellationToken cancellationToken = default(CancellationToken))
        {
            IBlobServicesOperations client = this.manager.Inner.BlobServices;

            return(await client.GetServicePropertiesAsync(this.resourceGroupName, this.accountName));
        }