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
|
# 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 ApplicationPackage(Model):
"""An application package which represents a particular version of an
application.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: The ID of the application.
:vartype id: str
:ivar version: The version of the application package.
:vartype version: str
:ivar state: The current state of the application package. Possible values
include: 'Pending', 'Active', 'Unmapped'
:vartype state: str or ~azure.mgmt.batch.models.PackageState
:ivar format: The format of the application package, if the package is
active.
:vartype format: str
:ivar storage_url: The URL for the application package in Azure Storage.
:vartype storage_url: str
:ivar storage_url_expiry: The UTC time at which the Azure Storage URL will
expire.
:vartype storage_url_expiry: datetime
:ivar last_activation_time: The time at which the package was last
activated, if the package is active.
:vartype last_activation_time: datetime
"""
_validation = {
'id': {'readonly': True},
'version': {'readonly': True},
'state': {'readonly': True},
'format': {'readonly': True},
'storage_url': {'readonly': True},
'storage_url_expiry': {'readonly': True},
'last_activation_time': {'readonly': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'version': {'key': 'version', 'type': 'str'},
'state': {'key': 'state', 'type': 'PackageState'},
'format': {'key': 'format', 'type': 'str'},
'storage_url': {'key': 'storageUrl', 'type': 'str'},
'storage_url_expiry': {'key': 'storageUrlExpiry', 'type': 'iso-8601'},
'last_activation_time': {'key': 'lastActivationTime', 'type': 'iso-8601'},
}
def __init__(self):
super(ApplicationPackage, self).__init__()
self.id = None
self.version = None
self.state = None
self.format = None
self.storage_url = None
self.storage_url_expiry = None
self.last_activation_time = None
|