1
- # --------------------------------------------------------------------------------------------
1
+ # --------------------------------------------------------------------------------------------
2
2
# Copyright (c) Microsoft Corporation. All rights reserved.
3
3
# Licensed under the MIT License. See License.txt in the project root for license information.
4
4
# --------------------------------------------------------------------------------------------
@@ -210,7 +210,7 @@ def get_project(self, project_id, include_capabilities=None, include_history=Non
210
210
211
211
def get_projects (self , state_filter = None , top = None , skip = None , continuation_token = None ):
212
212
"""GetProjects.
213
- Get project references with the specified state
213
+ Get all projects in the organization that the authenticated user has access to.
214
214
:param str state_filter: Filter on team projects in a specific team project state (default: WellFormed).
215
215
:param int top:
216
216
:param int skip:
@@ -235,7 +235,7 @@ def get_projects(self, state_filter=None, top=None, skip=None, continuation_toke
235
235
236
236
def queue_create_project (self , project_to_create ):
237
237
"""QueueCreateProject.
238
- Queue a project creation .
238
+ Queues a project to be created. Use the [GetOperation](../../operations/operations/get) to periodically check for create project status .
239
239
:param :class:`<TeamProject> <core.v4_1.models.TeamProject>` project_to_create: The project to create.
240
240
:rtype: :class:`<OperationReference> <core.v4_1.models.OperationReference>`
241
241
"""
@@ -248,7 +248,7 @@ def queue_create_project(self, project_to_create):
248
248
249
249
def queue_delete_project (self , project_id ):
250
250
"""QueueDeleteProject.
251
- Queue a project deletion .
251
+ Queues a project to be deleted. Use the [GetOperation](../../operations/operations/get) to periodically check for delete project status .
252
252
:param str project_id: The project id of the project to delete.
253
253
:rtype: :class:`<OperationReference> <core.v4_1.models.OperationReference>`
254
254
"""
0 commit comments