added a file that was somehow missing

This commit is contained in:
Burt Bielicki 2016-05-03 16:34:17 -07:00
Родитель a53071d2e7
Коммит 87d24729d2
1 изменённых файлов: 31 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,31 @@
#pylint: skip-file
# coding=utf-8
# --------------------------------------------------------------------------
# Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class DeploymentParameterArtifactsLocation(Model):
"""DeploymentParameterArtifactsLocation
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar value: Container URI of of the template. Default value:
"https://azuresdkci.blob.core.windows.net/templatehost/CreateVM" .
:vartype value: str
"""
_validation = {
'value': {'required': True, 'constant': True},
}
_attribute_map = {
'value': {'key': 'value', 'type': 'str'},
}
value = "https://azuresdkci.blob.core.windows.net/templatehost/CreateVM"