Source code for azure.mgmt.resource.locks.v2016_09_01.models._models_py3

# 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 CloudError(Model):
    """CloudError.
    """

    _attribute_map = {
    }


[docs]class ManagementLockObject(Model): """The lock information. Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. :param level: Required. The level of the lock. Possible values are: NotSpecified, CanNotDelete, ReadOnly. CanNotDelete means authorized users are able to read and modify the resources, but not delete. ReadOnly means authorized users can only read from a resource, but they can't modify or delete it. Possible values include: 'NotSpecified', 'CanNotDelete', 'ReadOnly' :type level: str or ~azure.mgmt.resource.locks.v2016_09_01.models.LockLevel :param notes: Notes about the lock. Maximum of 512 characters. :type notes: str :param owners: The owners of the lock. :type owners: list[~azure.mgmt.resource.locks.v2016_09_01.models.ManagementLockOwner] :ivar id: The resource ID of the lock. :vartype id: str :ivar type: The resource type of the lock - Microsoft.Authorization/locks. :vartype type: str :ivar name: The name of the lock. :vartype name: str """ _validation = { 'level': {'required': True}, 'id': {'readonly': True}, 'type': {'readonly': True}, 'name': {'readonly': True}, } _attribute_map = { 'level': {'key': 'properties.level', 'type': 'str'}, 'notes': {'key': 'properties.notes', 'type': 'str'}, 'owners': {'key': 'properties.owners', 'type': '[ManagementLockOwner]'}, 'id': {'key': 'id', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, } def __init__(self, *, level, notes: str=None, owners=None, **kwargs) -> None: super(ManagementLockObject, self).__init__(**kwargs) self.level = level self.notes = notes self.owners = owners self.id = None self.type = None self.name = None
[docs]class ManagementLockOwner(Model): """Lock owner properties. :param application_id: The application ID of the lock owner. :type application_id: str """ _attribute_map = { 'application_id': {'key': 'applicationId', 'type': 'str'}, } def __init__(self, *, application_id: str=None, **kwargs) -> None: super(ManagementLockOwner, self).__init__(**kwargs) self.application_id = application_id
[docs]class Operation(Model): """Microsoft.Authorization operation. :param name: Operation name: {provider}/{resource}/{operation} :type name: str :param display: The object that represents the operation. :type display: ~azure.mgmt.resource.locks.v2016_09_01.models.OperationDisplay """ _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'display': {'key': 'display', 'type': 'OperationDisplay'}, } def __init__(self, *, name: str=None, display=None, **kwargs) -> None: super(Operation, self).__init__(**kwargs) self.name = name self.display = display
[docs]class OperationDisplay(Model): """The object that represents the operation. :param provider: Service provider: Microsoft.Authorization :type provider: str :param resource: Resource on which the operation is performed: Profile, endpoint, etc. :type resource: str :param operation: Operation type: Read, write, delete, etc. :type operation: str """ _attribute_map = { 'provider': {'key': 'provider', 'type': 'str'}, 'resource': {'key': 'resource', 'type': 'str'}, 'operation': {'key': 'operation', 'type': 'str'}, } def __init__(self, *, provider: str=None, resource: str=None, operation: str=None, **kwargs) -> None: super(OperationDisplay, self).__init__(**kwargs) self.provider = provider self.resource = resource self.operation = operation