Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

module Azure::ARM::Storage
autoload :Operations, 'generated/azure_mgmt_storage/operations.rb'
autoload :SKUs, 'generated/azure_mgmt_storage/skus.rb'
autoload :Skus, 'generated/azure_mgmt_storage/skus.rb'
autoload :StorageAccounts, 'generated/azure_mgmt_storage/storage_accounts.rb'
autoload :UsageOperations, 'generated/azure_mgmt_storage/usage_operations.rb'
autoload :StorageManagementClient, 'generated/azure_mgmt_storage/storage_management_client.rb'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ module Azure::ARM::Storage
#
# The Azure Storage Management API.
#
class SKUs
class Skus
include MsRestAzure

#
# Creates and initializes a new instance of the SKUs class.
# Creates and initializes a new instance of the Skus class.
# @param client service class for accessing basic functionality.
#
def initialize(client)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class StorageManagementClient < MsRestAzure::AzureServiceClient
# @return [Operations] operations
attr_reader :operations

# @return [SKUs] skus
# @return [Skus] skus
attr_reader :skus

# @return [StorageAccounts] storage_accounts
Expand All @@ -62,7 +62,7 @@ def initialize(credentials = nil, base_url = nil, options = nil)
@credentials = credentials

@operations = Operations.new(self)
@skus = SKUs.new(self)
@skus = Skus.new(self)
@storage_accounts = StorageAccounts.new(self)
@usage_operations = UsageOperations.new(self)
@api_version = '2017-06-01'
Expand Down