|
9 | 9 |
|
10 | 10 | class ClientFactory(object): |
11 | 11 | """ClientFactory. |
12 | | - A factory class to get the 5.0 released clients. |
| 12 | + A factory class to get the 5.1 released clients. |
13 | 13 | """ |
14 | 14 |
|
15 | 15 | def __init__(self, connection): |
16 | 16 | self._connection = connection |
17 | 17 |
|
18 | 18 | def get_accounts_client(self): |
19 | 19 | """get_accounts_client. |
20 | | - Gets the 5.0 version of the AccountsClient |
| 20 | + Gets the 5.1 version of the AccountsClient |
21 | 21 | :rtype: :class:`<AccountsClient> <azure.devops.released.accounts.accounts_client.AccountsClient>` |
22 | 22 | """ |
23 | 23 | return self._connection.get_client('azure.devops.released.accounts.accounts_client.AccountsClient') |
24 | 24 |
|
25 | 25 | def get_build_client(self): |
26 | 26 | """get_build_client. |
27 | | - Gets the 5.0 version of the BuildClient |
| 27 | + Gets the 5.1 version of the BuildClient |
28 | 28 | :rtype: :class:`<BuildClient> <azure.devops.released.build.build_client.BuildClient>` |
29 | 29 | """ |
30 | 30 | return self._connection.get_client('azure.devops.released.build.build_client.BuildClient') |
31 | 31 |
|
32 | 32 | def get_cloud_load_test_client(self): |
33 | 33 | """get_cloud_load_test_client. |
34 | | - Gets the 5.0 version of the CloudLoadTestClient |
| 34 | + Gets the 5.1 version of the CloudLoadTestClient |
35 | 35 | :rtype: :class:`<CloudLoadTestClient> <azure.devops.released.cloud_load_test.cloud_load_test_client.CloudLoadTestClient>` |
36 | 36 | """ |
37 | 37 | return self._connection.get_client('azure.devops.released.cloud_load_test.cloud_load_test_client.CloudLoadTestClient') |
38 | 38 |
|
39 | 39 | def get_core_client(self): |
40 | 40 | """get_core_client. |
41 | | - Gets the 5.0 version of the CoreClient |
| 41 | + Gets the 5.1 version of the CoreClient |
42 | 42 | :rtype: :class:`<CoreClient> <azure.devops.released.core.core_client.CoreClient>` |
43 | 43 | """ |
44 | 44 | return self._connection.get_client('azure.devops.released.core.core_client.CoreClient') |
45 | 45 |
|
46 | 46 | def get_git_client(self): |
47 | 47 | """get_git_client. |
48 | | - Gets the 5.0 version of the GitClient |
| 48 | + Gets the 5.1 version of the GitClient |
49 | 49 | :rtype: :class:`<GitClient> <azure.devops.released.git.git_client.GitClient>` |
50 | 50 | """ |
51 | 51 | return self._connection.get_client('azure.devops.released.git.git_client.GitClient') |
52 | 52 |
|
53 | 53 | def get_identity_client(self): |
54 | 54 | """get_identity_client. |
55 | | - Gets the 5.0 version of the IdentityClient |
| 55 | + Gets the 5.1 version of the IdentityClient |
56 | 56 | :rtype: :class:`<IdentityClient> <azure.devops.released.identity.identity_client.IdentityClient>` |
57 | 57 | """ |
58 | 58 | return self._connection.get_client('azure.devops.released.identity.identity_client.IdentityClient') |
59 | 59 |
|
| 60 | + def get_notification_client(self): |
| 61 | + """get_notification_client. |
| 62 | + Gets the 5.1 version of the NotificationClient |
| 63 | + :rtype: :class:`<NotificationClient> <azure.devops.released.notification.notification_client.NotificationClient>` |
| 64 | + """ |
| 65 | + return self._connection.get_client('azure.devops.released.notification.notification_client.NotificationClient') |
| 66 | + |
60 | 67 | def get_operations_client(self): |
61 | 68 | """get_operations_client. |
62 | | - Gets the 5.0 version of the OperationsClient |
| 69 | + Gets the 5.1 version of the OperationsClient |
63 | 70 | :rtype: :class:`<OperationsClient> <azure.devops.released.operations.operations_client.OperationsClient>` |
64 | 71 | """ |
65 | 72 | return self._connection.get_client('azure.devops.released.operations.operations_client.OperationsClient') |
66 | 73 |
|
67 | 74 | def get_policy_client(self): |
68 | 75 | """get_policy_client. |
69 | | - Gets the 5.0 version of the PolicyClient |
| 76 | + Gets the 5.1 version of the PolicyClient |
70 | 77 | :rtype: :class:`<PolicyClient> <azure.devops.released.policy.policy_client.PolicyClient>` |
71 | 78 | """ |
72 | 79 | return self._connection.get_client('azure.devops.released.policy.policy_client.PolicyClient') |
73 | 80 |
|
74 | 81 | def get_profile_client(self): |
75 | 82 | """get_profile_client. |
76 | | - Gets the 5.0 version of the ProfileClient |
| 83 | + Gets the 5.1 version of the ProfileClient |
77 | 84 | :rtype: :class:`<ProfileClient> <azure.devops.released.profile.profile_client.ProfileClient>` |
78 | 85 | """ |
79 | 86 | return self._connection.get_client('azure.devops.released.profile.profile_client.ProfileClient') |
80 | 87 |
|
81 | 88 | def get_release_client(self): |
82 | 89 | """get_release_client. |
83 | | - Gets the 5.0 version of the ReleaseClient |
| 90 | + Gets the 5.1 version of the ReleaseClient |
84 | 91 | :rtype: :class:`<ReleaseClient> <azure.devops.released.release.release_client.ReleaseClient>` |
85 | 92 | """ |
86 | 93 | return self._connection.get_client('azure.devops.released.release.release_client.ReleaseClient') |
87 | 94 |
|
88 | 95 | def get_security_client(self): |
89 | 96 | """get_security_client. |
90 | | - Gets the 5.0 version of the SecurityClient |
| 97 | + Gets the 5.1 version of the SecurityClient |
91 | 98 | :rtype: :class:`<SecurityClient> <azure.devops.released.security.security_client.SecurityClient>` |
92 | 99 | """ |
93 | 100 | return self._connection.get_client('azure.devops.released.security.security_client.SecurityClient') |
94 | 101 |
|
95 | 102 | def get_service_hooks_client(self): |
96 | 103 | """get_service_hooks_client. |
97 | | - Gets the 5.0 version of the ServiceHooksClient |
| 104 | + Gets the 5.1 version of the ServiceHooksClient |
98 | 105 | :rtype: :class:`<ServiceHooksClient> <azure.devops.released.service_hooks.service_hooks_client.ServiceHooksClient>` |
99 | 106 | """ |
100 | 107 | return self._connection.get_client('azure.devops.released.service_hooks.service_hooks_client.ServiceHooksClient') |
101 | 108 |
|
102 | 109 | def get_task_client(self): |
103 | 110 | """get_task_client. |
104 | | - Gets the 5.0 version of the TaskClient |
| 111 | + Gets the 5.1 version of the TaskClient |
105 | 112 | :rtype: :class:`<TaskClient> <azure.devops.released.task.task_client.TaskClient>` |
106 | 113 | """ |
107 | 114 | return self._connection.get_client('azure.devops.released.task.task_client.TaskClient') |
108 | 115 |
|
109 | 116 | def get_task_agent_client(self): |
110 | 117 | """get_task_agent_client. |
111 | | - Gets the 5.0 version of the TaskAgentClient |
| 118 | + Gets the 5.1 version of the TaskAgentClient |
112 | 119 | :rtype: :class:`<TaskAgentClient> <azure.devops.released.task_agent.task_agent_client.TaskAgentClient>` |
113 | 120 | """ |
114 | 121 | return self._connection.get_client('azure.devops.released.task_agent.task_agent_client.TaskAgentClient') |
115 | 122 |
|
116 | 123 | def get_test_client(self): |
117 | 124 | """get_test_client. |
118 | | - Gets the 5.0 version of the TestClient |
| 125 | + Gets the 5.1 version of the TestClient |
119 | 126 | :rtype: :class:`<TestClient> <azure.devops.released.test.test_client.TestClient>` |
120 | 127 | """ |
121 | 128 | return self._connection.get_client('azure.devops.released.test.test_client.TestClient') |
122 | 129 |
|
| 130 | + def get_test_plan_client(self): |
| 131 | + """get_test_plan_client. |
| 132 | + Gets the 5.1 version of the TestPlanClient |
| 133 | + :rtype: :class:`<TestPlanClient> <azure.devops.released.test_plan.test_plan_client.TestPlanClient>` |
| 134 | + """ |
| 135 | + return self._connection.get_client('azure.devops.released.test_plan.test_plan_client.TestPlanClient') |
| 136 | + |
| 137 | + def get_test_results_client(self): |
| 138 | + """get_test_results_client. |
| 139 | + Gets the 5.1 version of the TestResultsClient |
| 140 | + :rtype: :class:`<TestResultsClient> <azure.devops.released.test_results.test_results_client.TestResultsClient>` |
| 141 | + """ |
| 142 | + return self._connection.get_client('azure.devops.released.test_results.test_results_client.TestResultsClient') |
| 143 | + |
123 | 144 | def get_tfvc_client(self): |
124 | 145 | """get_tfvc_client. |
125 | | - Gets the 5.0 version of the TfvcClient |
| 146 | + Gets the 5.1 version of the TfvcClient |
126 | 147 | :rtype: :class:`<TfvcClient> <azure.devops.released.tfvc.tfvc_client.TfvcClient>` |
127 | 148 | """ |
128 | 149 | return self._connection.get_client('azure.devops.released.tfvc.tfvc_client.TfvcClient') |
129 | 150 |
|
130 | 151 | def get_wiki_client(self): |
131 | 152 | """get_wiki_client. |
132 | | - Gets the 5.0 version of the WikiClient |
| 153 | + Gets the 5.1 version of the WikiClient |
133 | 154 | :rtype: :class:`<WikiClient> <azure.devops.released.wiki.wiki_client.WikiClient>` |
134 | 155 | """ |
135 | 156 | return self._connection.get_client('azure.devops.released.wiki.wiki_client.WikiClient') |
136 | 157 |
|
137 | 158 | def get_work_client(self): |
138 | 159 | """get_work_client. |
139 | | - Gets the 5.0 version of the WorkClient |
| 160 | + Gets the 5.1 version of the WorkClient |
140 | 161 | :rtype: :class:`<WorkClient> <azure.devops.released.work.work_client.WorkClient>` |
141 | 162 | """ |
142 | 163 | return self._connection.get_client('azure.devops.released.work.work_client.WorkClient') |
143 | 164 |
|
144 | 165 | def get_work_item_tracking_client(self): |
145 | 166 | """get_work_item_tracking_client. |
146 | | - Gets the 5.0 version of the WorkItemTrackingClient |
| 167 | + Gets the 5.1 version of the WorkItemTrackingClient |
147 | 168 | :rtype: :class:`<WorkItemTrackingClient> <azure.devops.released.work_item_tracking.work_item_tracking_client.WorkItemTrackingClient>` |
148 | 169 | """ |
149 | 170 | return self._connection.get_client('azure.devops.released.work_item_tracking.work_item_tracking_client.WorkItemTrackingClient') |
|
0 commit comments