Source code for azure.mgmt.devtestlabs.models.custom_image

# 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 .resource import Resource


[docs]class CustomImage(Resource): """A custom image. Variables are only populated by the server, and will be ignored when sending a request. :ivar id: The identifier of the resource. :vartype id: str :ivar name: The name of the resource. :vartype name: str :ivar type: The type of the resource. :vartype type: str :param location: The location of the resource. :type location: str :param tags: The tags of the resource. :type tags: dict[str, str] :param vm: The virtual machine from which the image is to be created. :type vm: ~azure.mgmt.devtestlabs.models.CustomImagePropertiesFromVm :param vhd: The VHD from which the image is to be created. :type vhd: ~azure.mgmt.devtestlabs.models.CustomImagePropertiesCustom :param description: The description of the custom image. :type description: str :param author: The author of the custom image. :type author: str :ivar creation_date: The creation date of the custom image. :vartype creation_date: datetime :param managed_image_id: The Managed Image Id backing the custom image. :type managed_image_id: str :param provisioning_state: The provisioning status of the resource. :type provisioning_state: str :param unique_identifier: The unique immutable identifier of a resource (Guid). :type unique_identifier: str """ _validation = { 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, 'creation_date': {'readonly': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'vm': {'key': 'properties.vm', 'type': 'CustomImagePropertiesFromVm'}, 'vhd': {'key': 'properties.vhd', 'type': 'CustomImagePropertiesCustom'}, 'description': {'key': 'properties.description', 'type': 'str'}, 'author': {'key': 'properties.author', 'type': 'str'}, 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'}, 'managed_image_id': {'key': 'properties.managedImageId', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'unique_identifier': {'key': 'properties.uniqueIdentifier', 'type': 'str'}, } def __init__(self, location=None, tags=None, vm=None, vhd=None, description=None, author=None, managed_image_id=None, provisioning_state=None, unique_identifier=None): super(CustomImage, self).__init__(location=location, tags=tags) self.vm = vm self.vhd = vhd self.description = description self.author = author self.creation_date = None self.managed_image_id = managed_image_id self.provisioning_state = provisioning_state self.unique_identifier = unique_identifier