@@ -39,9 +39,9 @@ async def create_project(
39
39
) -> Project :
40
40
"""
41
41
Create project
42
- :param name: The name of the project
43
- :param organization_id: The organization ID of the project
44
- :param description: The description of the project
42
+ :param name: The name of the project.
43
+ :param organization_id: The organization ID of the project.
44
+ :param description: The description of the project.
45
45
:return: :class:`Project <Project>`
46
46
47
47
Usage:
@@ -78,12 +78,12 @@ async def list_projects(
78
78
) -> ListProjectsResponse :
79
79
"""
80
80
List projects
81
- :param organization_id: The organization ID of the project
82
- :param name: The name of the project
83
- :param page: The page number for the returned projects
84
- :param page_size: The maximum number of project per page
85
- :param order_by: The sort order of the returned projects
86
- :param project_ids: Filter out by a list of project ID
81
+ :param organization_id: The organization ID of the project.
82
+ :param name: The name of the project.
83
+ :param page: The page number for the returned projects.
84
+ :param page_size: The maximum number of project per page.
85
+ :param order_by: The sort order of the returned projects.
86
+ :param project_ids: Filter out by a list of project ID.
87
87
:return: :class:`ListProjectsResponse <ListProjectsResponse>`
88
88
89
89
Usage:
@@ -121,12 +121,12 @@ async def list_projects_all(
121
121
) -> List [Project ]:
122
122
"""
123
123
List projects
124
- :param organization_id: The organization ID of the project
125
- :param name: The name of the project
126
- :param page: The page number for the returned projects
127
- :param page_size: The maximum number of project per page
128
- :param order_by: The sort order of the returned projects
129
- :param project_ids: Filter out by a list of project ID
124
+ :param organization_id: The organization ID of the project.
125
+ :param name: The name of the project.
126
+ :param page: The page number for the returned projects.
127
+ :param page_size: The maximum number of project per page.
128
+ :param order_by: The sort order of the returned projects.
129
+ :param project_ids: Filter out by a list of project ID.
130
130
:return: :class:`List[ListProjectsResponse] <List[ListProjectsResponse]>`
131
131
132
132
Usage:
@@ -156,7 +156,7 @@ async def get_project(
156
156
) -> Project :
157
157
"""
158
158
Get project
159
- :param project_id: The project ID of the project
159
+ :param project_id: The project ID of the project.
160
160
:return: :class:`Project <Project>`
161
161
162
162
Usage:
@@ -184,7 +184,7 @@ async def delete_project(
184
184
) -> Optional [None ]:
185
185
"""
186
186
Delete project
187
- :param project_id: The project ID of the project
187
+ :param project_id: The project ID of the project.
188
188
189
189
Usage:
190
190
::
@@ -213,9 +213,9 @@ async def update_project(
213
213
) -> Project :
214
214
"""
215
215
Update project
216
- :param project_id: The project ID of the project
217
- :param name: The name of the project
218
- :param description: The description of the project
216
+ :param project_id: The project ID of the project.
217
+ :param name: The name of the project.
218
+ :param description: The description of the project.
219
219
:return: :class:`Project <Project>`
220
220
221
221
Usage:
0 commit comments