1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class RecommendedElasticPoolMetric(Model):
"""Represents recommended elastic pool metric.
:param date_time_property: The time of metric (ISO8601 format).
:type date_time_property: datetime
:param dtu: Gets or sets the DTUs (Database Transaction Units). See
https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/
:type dtu: float
:param size_gb: Gets or sets size in gigabytes.
:type size_gb: float
"""
_attribute_map = {
'date_time_property': {'key': 'dateTime', 'type': 'iso-8601'},
'dtu': {'key': 'dtu', 'type': 'float'},
'size_gb': {'key': 'sizeGB', 'type': 'float'},
}
def __init__(self, **kwargs):
super(RecommendedElasticPoolMetric, self).__init__(**kwargs)
self.date_time_property = kwargs.get('date_time_property', None)
self.dtu = kwargs.get('dtu', None)
self.size_gb = kwargs.get('size_gb', None)
|