@@ -1738,11 +1738,17 @@ async def list_quota(
17381738 self ,
17391739 * ,
17401740 order_by : ListQuotaRequestOrderBy = ListQuotaRequestOrderBy .NAME_ASC ,
1741- page : Optional [int ] = None ,
17421741 page_size : Optional [int ] = None ,
1742+ page : Optional [int ] = None ,
17431743 organization_id : Optional [str ] = None ,
17441744 ) -> ListQuotaResponse :
17451745 """
1746+ List all quota in the organization with the associated limit
1747+ :param order_by: Criteria for sorting results
1748+ :param page_size: Number of results per page. Value must be between 1 and 100
1749+ :param page: Number of page. Value must be greater to 1
1750+ :param organization_id: Filter by organization ID
1751+ :return: :class:`ListQuotaResponse <ListQuotaResponse>`
17461752
17471753 Usage:
17481754 ::
@@ -1769,11 +1775,16 @@ async def list_quota_all(
17691775 self ,
17701776 * ,
17711777 order_by : Optional [ListQuotaRequestOrderBy ] = None ,
1772- page : Optional [int ] = None ,
17731778 page_size : Optional [int ] = None ,
1779+ page : Optional [int ] = None ,
17741780 organization_id : Optional [str ] = None ,
17751781 ) -> List [Quotum ]:
17761782 """
1783+ List all quota in the organization with the associated limit
1784+ :param order_by: Criteria for sorting results
1785+ :param page_size: Number of results per page. Value must be between 1 and 100
1786+ :param page: Number of page. Value must be greater to 1
1787+ :param organization_id: Filter by organization ID
17771788 :return: :class:`List[ListQuotaResponse] <List[ListQuotaResponse]>`
17781789
17791790 Usage:
@@ -1788,8 +1799,8 @@ async def list_quota_all(
17881799 fetcher = self .list_quota ,
17891800 args = {
17901801 "order_by" : order_by ,
1791- "page" : page ,
17921802 "page_size" : page_size ,
1803+ "page" : page ,
17931804 "organization_id" : organization_id ,
17941805 },
17951806 )
@@ -1801,6 +1812,10 @@ async def get_quotum(
18011812 organization_id : Optional [str ] = None ,
18021813 ) -> Quotum :
18031814 """
1815+ Get a quotum in the organization with the associated limit
1816+ :param quotum_name: Name of the quotum to get
1817+ :param organization_id: ID of the organization
1818+ :return: :class:`Quotum <Quotum>`
18041819
18051820 Usage:
18061821 ::
0 commit comments