Exemple #1
0
        public async Task <Microsoft.Azure.Management.Storage.Fluent.IBlobServiceProperties> UpdateResourceAsync(CancellationToken cancellationToken = default(CancellationToken))
        {
            IBlobServicesOperations    client = this.manager.Inner.BlobServices;
            BlobServicePropertiesInner blobServicePropertiesInner = await client.SetServicePropertiesAsync(this.resourceGroupName, this.accountName, this.Inner);

            return(new BlobServicePropertiesImpl(blobServicePropertiesInner, this.manager));
        }
 /// <summary>
 /// Sets 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>
 /// <param name='parameters'>
 /// The properties of a storage account’s Blob service, including properties
 /// for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.
 /// </param>
 public static BlobServiceProperties SetServiceProperties(this IBlobServicesOperations operations, string resourceGroupName, string accountName, BlobServiceProperties parameters)
 {
     return(operations.SetServicePropertiesAsync(resourceGroupName, accountName, parameters).GetAwaiter().GetResult());
 }