Example #1
0
        public override async Task <Microsoft.Azure.Management.Storage.Fluent.IManagementPolicy> CreateResourceAsync(CancellationToken cancellationToken = default(CancellationToken))
        {
            if (IsInCreateMode())
            {
                IManagementPoliciesOperations client = this.manager.Inner.ManagementPolicies;
                ManagementPolicyInner         managementPolicyInner = await client.CreateOrUpdateAsync(this.resourceGroupName, this.accountName, this.cpolicy);

                ResetCreateUpdateParameters();
                this.SetInner(managementPolicyInner);
                return(this);
            }
            else
            {
                await UpdateResourceAsync(cancellationToken);

                return(this);
            }
        }
Example #2
0
 /// <summary>
 /// Sets the data policy rules associated with the specified storage account.
 /// </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='policy'>
 /// The Storage Account ManagementPolicies Rules, in JSON format. See more
 /// details in:
 /// https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.
 /// </param>
 public static StorageAccountManagementPolicies CreateOrUpdate(this IManagementPoliciesOperations operations, string resourceGroupName, string accountName, object policy = default(object))
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, accountName, policy).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Sets the managementpolicy to the specified storage account.
 /// </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='policy'>
 /// The Storage Account ManagementPolicy, in JSON format. See more details in:
 /// https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.
 /// </param>
 public static ManagementPolicy CreateOrUpdate(this IManagementPoliciesOperations operations, string resourceGroupName, string accountName, ManagementPolicySchema policy)
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, accountName, policy).GetAwaiter().GetResult());
 }