test/integration/storage_account.rb in fog-azure-rm-0.0.9 vs test/integration/storage_account.rb in fog-azure-rm-0.1.0
- old
+ new
@@ -54,11 +54,12 @@
storage.storage_accounts.create(
name: 'fogstandardsagrs',
location: 'eastus',
resource_group: 'TestRG-SA',
sku_name: 'Standard',
- replication: 'GRS'
+ replication: 'GRS',
+ encryption: true
)
########################################################################################################################
########### Create A Premium(SSD) Storage Account of its only Replication: LRS (Locally-redundant storage) ##########
########################################################################################################################
@@ -68,9 +69,16 @@
location: 'eastus',
resource_group: 'TestRG-SA',
sku_name: 'Premium',
replication: 'LRS'
)
+
+########################################################################################################################
+###################### Get and Update Storage Account ######################
+########################################################################################################################
+
+premium_storage_account = storage.storage_accounts.get('TestRG-SA', 'fogpremiumsa')
+premium_storage_account.update(encryption: true)
########################################################################################################################
###################### Get and Delete Storage Account ######################
########################################################################################################################