1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
# 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_py3 import Resource
class GalleryImage(Resource):
"""Specifies information about the gallery Image Definition that you want to
create or update.
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.
:ivar id: Resource Id
:vartype id: str
:ivar name: Resource name
:vartype name: str
:ivar type: Resource type
:vartype type: str
:param location: Required. Resource location
:type location: str
:param tags: Resource tags
:type tags: dict[str, str]
:param description: The description of this gallery Image Definition
resource. This property is updateable.
:type description: str
:param eula: The Eula agreement for the gallery Image Definition.
:type eula: str
:param privacy_statement_uri: The privacy statement uri.
:type privacy_statement_uri: str
:param release_note_uri: The release note uri.
:type release_note_uri: str
:param os_type: Required. This property allows you to specify the type of
the OS that is included in the disk when creating a VM from a managed
image. <br><br> Possible values are: <br><br> **Windows** <br><br>
**Linux**. Possible values include: 'Windows', 'Linux'
:type os_type: str or
~azure.mgmt.compute.v2018_06_01.models.OperatingSystemTypes
:param os_state: Required. The allowed values for OS State are
'Generalized'. Possible values include: 'Generalized', 'Specialized'
:type os_state: str or
~azure.mgmt.compute.v2018_06_01.models.OperatingSystemStateTypes
:param end_of_life_date: The end of life date of the gallery Image
Definition. This property can be used for decommissioning purposes. This
property is updateable.
:type end_of_life_date: datetime
:param identifier: Required.
:type identifier:
~azure.mgmt.compute.v2018_06_01.models.GalleryImageIdentifier
:param recommended:
:type recommended:
~azure.mgmt.compute.v2018_06_01.models.RecommendedMachineConfiguration
:param disallowed:
:type disallowed: ~azure.mgmt.compute.v2018_06_01.models.Disallowed
:param purchase_plan:
:type purchase_plan:
~azure.mgmt.compute.v2018_06_01.models.ImagePurchasePlan
:ivar provisioning_state: The current state of the gallery Image
Definition. The provisioning state, which only appears in the response.
Possible values include: 'Creating', 'Updating', 'Failed', 'Succeeded',
'Deleting', 'Migrating'
:vartype provisioning_state: str or
~azure.mgmt.compute.v2018_06_01.models.enum
"""
_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
'os_type': {'required': True},
'os_state': {'required': True},
'identifier': {'required': True},
'provisioning_state': {'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}'},
'description': {'key': 'properties.description', 'type': 'str'},
'eula': {'key': 'properties.eula', 'type': 'str'},
'privacy_statement_uri': {'key': 'properties.privacyStatementUri', 'type': 'str'},
'release_note_uri': {'key': 'properties.releaseNoteUri', 'type': 'str'},
'os_type': {'key': 'properties.osType', 'type': 'OperatingSystemTypes'},
'os_state': {'key': 'properties.osState', 'type': 'OperatingSystemStateTypes'},
'end_of_life_date': {'key': 'properties.endOfLifeDate', 'type': 'iso-8601'},
'identifier': {'key': 'properties.identifier', 'type': 'GalleryImageIdentifier'},
'recommended': {'key': 'properties.recommended', 'type': 'RecommendedMachineConfiguration'},
'disallowed': {'key': 'properties.disallowed', 'type': 'Disallowed'},
'purchase_plan': {'key': 'properties.purchasePlan', 'type': 'ImagePurchasePlan'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
}
def __init__(self, *, location: str, os_type, os_state, identifier, tags=None, description: str=None, eula: str=None, privacy_statement_uri: str=None, release_note_uri: str=None, end_of_life_date=None, recommended=None, disallowed=None, purchase_plan=None, **kwargs) -> None:
super(GalleryImage, self).__init__(location=location, tags=tags, **kwargs)
self.description = description
self.eula = eula
self.privacy_statement_uri = privacy_statement_uri
self.release_note_uri = release_note_uri
self.os_type = os_type
self.os_state = os_state
self.end_of_life_date = end_of_life_date
self.identifier = identifier
self.recommended = recommended
self.disallowed = disallowed
self.purchase_plan = purchase_plan
self.provisioning_state = None
|