lib/azure/service/storage_service_properties.rb in azure-0.6.4 vs lib/azure/service/storage_service_properties.rb in azure-0.7.0.pre
- old
+ new
@@ -12,21 +12,26 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#--------------------------------------------------------------------------
require 'azure/service/logging'
require 'azure/service/metrics'
+require 'azure/service/cors'
module Azure
module Service
class StorageServiceProperties
def initialize
@logging = Logging.new
- @metrics = Metrics.new
+ @hour_metrics = Metrics.new
+ @minute_metrics = Metrics.new
+ @cors = Cors.new
yield self if block_given?
end
attr_accessor :logging
- attr_accessor :metrics
+ attr_accessor :hour_metrics
+ attr_accessor :minute_metrics
+ attr_accessor :cors
attr_accessor :default_service_version
end
end
-end
\ No newline at end of file
+end