# 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
[docs]class DeploymentOperation(Model):
"""Deployment operation information.
:param id: Full deployment operation id.
:type id: str
:param operation_id: Deployment operation id.
:type operation_id: str
:param properties: Deployment properties.
:type properties:
~azure.mgmt.resource.resources.v2016_02_01.models.DeploymentOperationProperties
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'operation_id': {'key': 'operationId', 'type': 'str'},
'properties': {'key': 'properties', 'type': 'DeploymentOperationProperties'},
}
def __init__(self, *, id: str=None, operation_id: str=None, properties=None, **kwargs) -> None:
super(DeploymentOperation, self).__init__(**kwargs)
self.id = id
self.operation_id = operation_id
self.properties = properties