Skip to content

Commit b4504e4

Browse files
committed
Fix .gitignore
1 parent 3ea3f27 commit b4504e4

File tree

10 files changed

+9394
-5
lines changed

10 files changed

+9394
-5
lines changed

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,14 @@ __pycache__/
288288
# Telerik's JustMock configuration file
289289
*.jmconfig
290290

291-
# BizTalk build output
291+
# BizTalk build outputv
292292
*.btp.cs
293293
*.btm.cs
294294
*.odx.cs
295295
*.xsd.cs
296296
.vscode/
297297
vsts/build/bdist.win32/
298298

299-
# don't ignore release managment client
300-
!vsts/vsts/release
299+
# don't ignore release management client
300+
!azure-devops/azure/devops/v4_0/release
301+
!azure-devops/azure/devops/v4_1/release

azure-devops/azure/devops/_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SystemException(Model):
106106
:param class_name:
107107
:type class_name: str
108108
:param inner_exception:
109-
:type inner_exception: :class:`SystemException <vsts.models.SystemException>`
109+
:type inner_exception: :class:`SystemException`
110110
:param message:
111111
:type message: str
112112
"""
@@ -164,7 +164,7 @@ class WrappedException(Model):
164164
:param exception_id:
165165
:type exception_id: str
166166
:param inner_exception:
167-
:type inner_exception: :class:`WrappedException <vsts.models.WrappedException>`
167+
:type inner_exception: :class:`WrappedException`
168168
:param message:
169169
:type message: str
170170
:param type_name:
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
# --------------------------------------------------------------------------------------------
5+
# Generated file, DO NOT EDIT
6+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7+
# --------------------------------------------------------------------------------------------
8+
9+
from .models import *
10+
11+
__all__ = [
12+
'AgentArtifactDefinition',
13+
'ApprovalOptions',
14+
'Artifact',
15+
'ArtifactMetadata',
16+
'ArtifactSourceReference',
17+
'ArtifactTypeDefinition',
18+
'ArtifactVersion',
19+
'ArtifactVersionQueryResult',
20+
'AutoTriggerIssue',
21+
'BuildVersion',
22+
'Change',
23+
'Condition',
24+
'ConfigurationVariableValue',
25+
'DataSourceBindingBase',
26+
'DefinitionEnvironmentReference',
27+
'Deployment',
28+
'DeploymentAttempt',
29+
'DeploymentJob',
30+
'DeploymentQueryParameters',
31+
'EmailRecipients',
32+
'EnvironmentExecutionPolicy',
33+
'EnvironmentOptions',
34+
'EnvironmentRetentionPolicy',
35+
'FavoriteItem',
36+
'Folder',
37+
'IdentityRef',
38+
'InputDescriptor',
39+
'InputValidation',
40+
'InputValue',
41+
'InputValues',
42+
'InputValuesError',
43+
'InputValuesQuery',
44+
'Issue',
45+
'MailMessage',
46+
'ManualIntervention',
47+
'ManualInterventionUpdateMetadata',
48+
'Metric',
49+
'ProcessParameters',
50+
'ProjectReference',
51+
'QueuedReleaseData',
52+
'ReferenceLinks',
53+
'Release',
54+
'ReleaseApproval',
55+
'ReleaseApprovalHistory',
56+
'ReleaseCondition',
57+
'ReleaseDefinition',
58+
'ReleaseDefinitionApprovals',
59+
'ReleaseDefinitionApprovalStep',
60+
'ReleaseDefinitionDeployStep',
61+
'ReleaseDefinitionEnvironment',
62+
'ReleaseDefinitionEnvironmentStep',
63+
'ReleaseDefinitionEnvironmentSummary',
64+
'ReleaseDefinitionEnvironmentTemplate',
65+
'ReleaseDefinitionRevision',
66+
'ReleaseDefinitionShallowReference',
67+
'ReleaseDefinitionSummary',
68+
'ReleaseDeployPhase',
69+
'ReleaseEnvironment',
70+
'ReleaseEnvironmentShallowReference',
71+
'ReleaseEnvironmentUpdateMetadata',
72+
'ReleaseReference',
73+
'ReleaseRevision',
74+
'ReleaseSchedule',
75+
'ReleaseSettings',
76+
'ReleaseShallowReference',
77+
'ReleaseStartMetadata',
78+
'ReleaseTask',
79+
'ReleaseUpdateMetadata',
80+
'ReleaseWorkItemRef',
81+
'RetentionPolicy',
82+
'RetentionSettings',
83+
'SummaryMailSection',
84+
'TaskInputDefinitionBase',
85+
'TaskInputValidation',
86+
'TaskSourceDefinitionBase',
87+
'VariableGroup',
88+
'VariableGroupProviderData',
89+
'VariableValue',
90+
'WorkflowTask',
91+
'WorkflowTaskReference',
92+
]

0 commit comments

Comments
 (0)