How to use the azure-mgmt-trafficmanager.azure.mgmt.trafficmanager.models.tracked_resource_py3.TrackedResource function in azure-mgmt-trafficmanager

To help you get started, we’ve selected a few azure-mgmt-trafficmanager 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-trafficmanager / azure / mgmt / trafficmanager / models / profile_py3.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 .tracked_resource_py3 import TrackedResource


class Profile(TrackedResource):
    """Class representing a Traffic Manager profile.

    :param id: Fully qualified resource Id for the resource. Ex -
     /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{resourceName}
    :type id: str
    :param name: The name of the resource
    :type name: str
    :param type: The type of the resource. Ex-
     Microsoft.Network/trafficManagerProfiles.
    :type type: str
    :param tags: Resource tags.
    :type tags: dict[str, str]
    :param location: The Azure Region where the resource lives
    :type location: str
    :param profile_status: The status of the Traffic Manager profile. Possible
     values include: 'Enabled', 'Disabled'
github Azure / azure-sdk-for-python / azure-mgmt-trafficmanager / azure / mgmt / trafficmanager / models / tracked_resource_py3.py View on Github external
def __init__(self, *, id: str=None, name: str=None, type: str=None, tags=None, location: str=None, **kwargs) -> None:
        super(TrackedResource, self).__init__(id=id, name=name, type=type, **kwargs)
        self.tags = tags
        self.location = location

azure-mgmt-trafficmanager

Microsoft Azure Traffic Manager Management Client Library for Python

MIT
Latest version published 11 months ago

Package Health Score

93 / 100
Full package analysis

Popular azure-mgmt-trafficmanager functions

Similar packages