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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# Generated file, DO NOT EDIT
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------------------------
from msrest.serialization import Model
class BatchOperationData(Model):
"""BatchOperationData.
"""
_attribute_map = {
}
def __init__(self):
super(BatchOperationData, self).__init__()
class JsonPatchOperation(Model):
"""JsonPatchOperation.
:param from_: The path to copy from for the Move/Copy operation.
:type from_: str
:param op: The patch operation
:type op: object
:param path: The path for the operation
:type path: str
:param value: The value for the operation. This is either a primitive or a JToken.
:type value: object
"""
_attribute_map = {
'from_': {'key': 'from', 'type': 'str'},
'op': {'key': 'op', 'type': 'object'},
'path': {'key': 'path', 'type': 'str'},
'value': {'key': 'value', 'type': 'object'}
}
def __init__(self, from_=None, op=None, path=None, value=None):
super(JsonPatchOperation, self).__init__()
self.from_ = from_
self.op = op
self.path = path
self.value = value
class MinimalPackageDetails(Model):
"""MinimalPackageDetails.
:param id: Package name.
:type id: str
:param version: Package version.
:type version: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'version': {'key': 'version', 'type': 'str'}
}
def __init__(self, id=None, version=None):
super(MinimalPackageDetails, self).__init__()
self.id = id
self.version = version
class NuGetPackagesBatchRequest(Model):
"""NuGetPackagesBatchRequest.
:param data: Data required to perform the operation. This is optional based on the type of the operation. Use BatchPromoteData if performing a promote operation.
:type data: :class:`BatchOperationData <azure.devops.v5_0.nuget.models.BatchOperationData>`
:param operation: Type of operation that needs to be performed on packages.
:type operation: object
:param packages: The packages onto which the operation will be performed.
:type packages: list of :class:`MinimalPackageDetails <azure.devops.v5_0.nuget.models.MinimalPackageDetails>`
"""
_attribute_map = {
'data': {'key': 'data', 'type': 'BatchOperationData'},
'operation': {'key': 'operation', 'type': 'object'},
'packages': {'key': 'packages', 'type': '[MinimalPackageDetails]'}
}
def __init__(self, data=None, operation=None, packages=None):
super(NuGetPackagesBatchRequest, self).__init__()
self.data = data
self.operation = operation
self.packages = packages
class NuGetPackageVersionDeletionState(Model):
"""NuGetPackageVersionDeletionState.
:param deleted_date: Utc date the package was deleted.
:type deleted_date: datetime
:param name: Name of the package.
:type name: str
:param version: Version of the package.
:type version: str
"""
_attribute_map = {
'deleted_date': {'key': 'deletedDate', 'type': 'iso-8601'},
'name': {'key': 'name', 'type': 'str'},
'version': {'key': 'version', 'type': 'str'}
}
def __init__(self, deleted_date=None, name=None, version=None):
super(NuGetPackageVersionDeletionState, self).__init__()
self.deleted_date = deleted_date
self.name = name
self.version = version
class NuGetRecycleBinPackageVersionDetails(Model):
"""NuGetRecycleBinPackageVersionDetails.
:param deleted: Setting to false will undo earlier deletion and restore the package to feed.
:type deleted: bool
"""
_attribute_map = {
'deleted': {'key': 'deleted', 'type': 'bool'}
}
def __init__(self, deleted=None):
super(NuGetRecycleBinPackageVersionDetails, self).__init__()
self.deleted = deleted
class Package(Model):
"""Package.
:param _links: Related REST links.
:type _links: :class:`ReferenceLinks <azure.devops.v5_0.nuget.models.ReferenceLinks>`
:param deleted_date: If and when the package was deleted.
:type deleted_date: datetime
:param id: Package Id.
:type id: str
:param name: The display name of the package.
:type name: str
:param permanently_deleted_date: If and when the package was permanently deleted.
:type permanently_deleted_date: datetime
:param source_chain: The history of upstream sources for this package. The first source in the list is the immediate source from which this package was saved.
:type source_chain: list of :class:`UpstreamSourceInfo <azure.devops.v5_0.nuget.models.UpstreamSourceInfo>`
:param version: The version of the package.
:type version: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'deleted_date': {'key': 'deletedDate', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'permanently_deleted_date': {'key': 'permanentlyDeletedDate', 'type': 'iso-8601'},
'source_chain': {'key': 'sourceChain', 'type': '[UpstreamSourceInfo]'},
'version': {'key': 'version', 'type': 'str'}
}
def __init__(self, _links=None, deleted_date=None, id=None, name=None, permanently_deleted_date=None, source_chain=None, version=None):
super(Package, self).__init__()
self._links = _links
self.deleted_date = deleted_date
self.id = id
self.name = name
self.permanently_deleted_date = permanently_deleted_date
self.source_chain = source_chain
self.version = version
class PackageVersionDetails(Model):
"""PackageVersionDetails.
:param listed: Indicates the listing state of a package
:type listed: bool
:param views: The view to which the package version will be added
:type views: :class:`JsonPatchOperation <azure.devops.v5_0.nuget.models.JsonPatchOperation>`
"""
_attribute_map = {
'listed': {'key': 'listed', 'type': 'bool'},
'views': {'key': 'views', 'type': 'JsonPatchOperation'}
}
def __init__(self, listed=None, views=None):
super(PackageVersionDetails, self).__init__()
self.listed = listed
self.views = views
class ReferenceLinks(Model):
"""ReferenceLinks.
:param links: The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only.
:type links: dict
"""
_attribute_map = {
'links': {'key': 'links', 'type': '{object}'}
}
def __init__(self, links=None):
super(ReferenceLinks, self).__init__()
self.links = links
class UpstreamSourceInfo(Model):
"""UpstreamSourceInfo.
:param id: Identity of the upstream source.
:type id: str
:param location: Locator for connecting to the upstream source.
:type location: str
:param name: Display name.
:type name: str
:param source_type: Source type, such as Public or Internal.
:type source_type: object
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'source_type': {'key': 'sourceType', 'type': 'object'}
}
def __init__(self, id=None, location=None, name=None, source_type=None):
super(UpstreamSourceInfo, self).__init__()
self.id = id
self.location = location
self.name = name
self.source_type = source_type
class BatchListData(BatchOperationData):
"""BatchListData.
:param listed: The desired listed status for the package versions.
:type listed: bool
"""
_attribute_map = {
'listed': {'key': 'listed', 'type': 'bool'}
}
def __init__(self, listed=None):
super(BatchListData, self).__init__()
self.listed = listed
__all__ = [
'BatchOperationData',
'JsonPatchOperation',
'MinimalPackageDetails',
'NuGetPackagesBatchRequest',
'NuGetPackageVersionDeletionState',
'NuGetRecycleBinPackageVersionDetails',
'Package',
'PackageVersionDetails',
'ReferenceLinks',
'UpstreamSourceInfo',
'BatchListData',
]
|