@@ -39,9 +39,9 @@ async def create_project(
3939 ) -> Project :
4040 """
4141 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.
4545 :return: :class:`Project <Project>`
4646
4747 Usage:
@@ -78,12 +78,12 @@ async def list_projects(
7878 ) -> ListProjectsResponse :
7979 """
8080 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.
8787 :return: :class:`ListProjectsResponse <ListProjectsResponse>`
8888
8989 Usage:
@@ -121,12 +121,12 @@ async def list_projects_all(
121121 ) -> List [Project ]:
122122 """
123123 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.
130130 :return: :class:`List[ListProjectsResponse] <List[ListProjectsResponse]>`
131131
132132 Usage:
@@ -156,7 +156,7 @@ async def get_project(
156156 ) -> Project :
157157 """
158158 Get project
159- :param project_id: The project ID of the project
159+ :param project_id: The project ID of the project.
160160 :return: :class:`Project <Project>`
161161
162162 Usage:
@@ -184,7 +184,7 @@ async def delete_project(
184184 ) -> Optional [None ]:
185185 """
186186 Delete project
187- :param project_id: The project ID of the project
187+ :param project_id: The project ID of the project.
188188
189189 Usage:
190190 ::
@@ -213,9 +213,9 @@ async def update_project(
213213 ) -> Project :
214214 """
215215 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.
219219 :return: :class:`Project <Project>`
220220
221221 Usage:
0 commit comments