How to use the azure-mgmt-cosmosdb.azure.mgmt.cosmosdb.models.metric.Metric function in azure-mgmt-cosmosdb

To help you get started, we’ve selected a few azure-mgmt-cosmosdb examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-mgmt-cosmosdb / azure / mgmt / cosmosdb / models / partition_metric.py View on Github external
# 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 .metric import Metric


class PartitionMetric(Metric):
    """The metric values for a single partition.

    Variables are only populated by the server, and will be ignored when
    sending a request.

    :ivar start_time: The start time for the metric (ISO-8601 format).
    :vartype start_time: datetime
    :ivar end_time: The end time for the metric (ISO-8601 format).
    :vartype end_time: datetime
    :ivar time_grain: The time grain to be used to summarize the metric
     values.
    :vartype time_grain: str
    :param unit: The unit of the metric. Possible values include: 'Count',
     'Bytes', 'Seconds', 'Percent', 'CountPerSecond', 'BytesPerSecond',
     'Milliseconds'
    :type unit: str or ~azure.mgmt.cosmosdb.models.UnitType
github Azure / azure-sdk-for-python / azure-mgmt-cosmosdb / azure / mgmt / cosmosdb / models / metric.py View on Github external
def __init__(self, **kwargs):
        super(Metric, self).__init__(**kwargs)
        self.start_time = None
        self.end_time = None
        self.time_grain = None
        self.unit = kwargs.get('unit', None)
        self.name = None
        self.metric_values = None

azure-mgmt-cosmosdb

Microsoft Azure Cosmos DB Management Client Library for Python

MIT
Latest version published 4 months ago

Package Health Score

94 / 100
Full package analysis