@@ -47,15 +47,15 @@ async def list_private_networks(
4747 ) -> ListPrivateNetworksResponse :
4848 """
4949 List private networks
50- :param zone: Zone to target. If none is passed will use default zone from the config
51- :param order_by: The sort order of the returned private networks
52- :param page: The page number for the returned private networks
53- :param page_size: The maximum number of private networks per page
54- :param name: Filter private networks with names containing this string
55- :param tags: Filter private networks with one or more matching tags
56- :param organization_id: The organization ID on which to filter the returned private networks
57- :param project_id: The project ID on which to filter the returned private networks
58- :param private_network_ids: The PrivateNetwork IDs on which to filter the returned private networks
50+ :param zone: Zone to target. If none is passed will use default zone from the config.
51+ :param order_by: The sort order of the returned private networks.
52+ :param page: The page number for the returned private networks.
53+ :param page_size: The maximum number of private networks per page.
54+ :param name: Filter private networks with names containing this string.
55+ :param tags: Filter private networks with one or more matching tags.
56+ :param organization_id: The organization ID on which to filter the returned private networks.
57+ :param project_id: The project ID on which to filter the returned private networks.
58+ :param private_network_ids: The PrivateNetwork IDs on which to filter the returned private networks.
5959 :return: :class:`ListPrivateNetworksResponse <ListPrivateNetworksResponse>`
6060
6161 Usage:
@@ -100,15 +100,15 @@ async def list_private_networks_all(
100100 ) -> List [PrivateNetwork ]:
101101 """
102102 List private networks
103- :param zone: Zone to target. If none is passed will use default zone from the config
104- :param order_by: The sort order of the returned private networks
105- :param page: The page number for the returned private networks
106- :param page_size: The maximum number of private networks per page
107- :param name: Filter private networks with names containing this string
108- :param tags: Filter private networks with one or more matching tags
109- :param organization_id: The organization ID on which to filter the returned private networks
110- :param project_id: The project ID on which to filter the returned private networks
111- :param private_network_ids: The PrivateNetwork IDs on which to filter the returned private networks
103+ :param zone: Zone to target. If none is passed will use default zone from the config.
104+ :param order_by: The sort order of the returned private networks.
105+ :param page: The page number for the returned private networks.
106+ :param page_size: The maximum number of private networks per page.
107+ :param name: Filter private networks with names containing this string.
108+ :param tags: Filter private networks with one or more matching tags.
109+ :param organization_id: The organization ID on which to filter the returned private networks.
110+ :param project_id: The project ID on which to filter the returned private networks.
111+ :param private_network_ids: The PrivateNetwork IDs on which to filter the returned private networks.
112112 :return: :class:`List[ListPrivateNetworksResponse] <List[ListPrivateNetworksResponse]>`
113113
114114 Usage:
@@ -145,11 +145,11 @@ async def create_private_network(
145145 ) -> PrivateNetwork :
146146 """
147147 Create a private network
148- :param zone: Zone to target. If none is passed will use default zone from the config
149- :param name: The name of the private network
150- :param project_id: The project ID of the private network
151- :param tags: The private networks tags
152- :param subnets: Private network subnets CIDR
148+ :param zone: Zone to target. If none is passed will use default zone from the config.
149+ :param name: The name of the private network.
150+ :param project_id: The project ID of the private network.
151+ :param tags: The private networks tags.
152+ :param subnets: Private network subnets CIDR.
153153 :return: :class:`PrivateNetwork <PrivateNetwork>`
154154
155155 Usage:
@@ -186,8 +186,8 @@ async def get_private_network(
186186 ) -> PrivateNetwork :
187187 """
188188 Get a private network
189- :param zone: Zone to target. If none is passed will use default zone from the config
190- :param private_network_id: The private network id
189+ :param zone: Zone to target. If none is passed will use default zone from the config.
190+ :param private_network_id: The private network id.
191191 :return: :class:`PrivateNetwork <PrivateNetwork>`
192192
193193 Usage:
@@ -220,11 +220,11 @@ async def update_private_network(
220220 ) -> PrivateNetwork :
221221 """
222222 Update private network
223- :param zone: Zone to target. If none is passed will use default zone from the config
224- :param private_network_id: The private network ID
225- :param name: The name of the private network
226- :param tags: The private networks tags
227- :param subnets: Private network subnets CIDR (deprecated)
223+ :param zone: Zone to target. If none is passed will use default zone from the config.
224+ :param private_network_id: The private network ID.
225+ :param name: The name of the private network.
226+ :param tags: The private networks tags.
227+ :param subnets: Private network subnets CIDR (deprecated).
228228 :return: :class:`PrivateNetwork <PrivateNetwork>`
229229
230230 Usage:
@@ -264,8 +264,8 @@ async def delete_private_network(
264264 ) -> Optional [None ]:
265265 """
266266 Delete a private network
267- :param zone: Zone to target. If none is passed will use default zone from the config
268- :param private_network_id: The private network ID
267+ :param zone: Zone to target. If none is passed will use default zone from the config.
268+ :param private_network_id: The private network ID.
269269
270270 Usage:
271271 ::
0 commit comments