@@ -47,15 +47,15 @@ async def list_private_networks(
47
47
) -> ListPrivateNetworksResponse :
48
48
"""
49
49
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.
59
59
:return: :class:`ListPrivateNetworksResponse <ListPrivateNetworksResponse>`
60
60
61
61
Usage:
@@ -100,15 +100,15 @@ async def list_private_networks_all(
100
100
) -> List [PrivateNetwork ]:
101
101
"""
102
102
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.
112
112
:return: :class:`List[ListPrivateNetworksResponse] <List[ListPrivateNetworksResponse]>`
113
113
114
114
Usage:
@@ -145,11 +145,11 @@ async def create_private_network(
145
145
) -> PrivateNetwork :
146
146
"""
147
147
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.
153
153
:return: :class:`PrivateNetwork <PrivateNetwork>`
154
154
155
155
Usage:
@@ -186,8 +186,8 @@ async def get_private_network(
186
186
) -> PrivateNetwork :
187
187
"""
188
188
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.
191
191
:return: :class:`PrivateNetwork <PrivateNetwork>`
192
192
193
193
Usage:
@@ -220,11 +220,11 @@ async def update_private_network(
220
220
) -> PrivateNetwork :
221
221
"""
222
222
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).
228
228
:return: :class:`PrivateNetwork <PrivateNetwork>`
229
229
230
230
Usage:
@@ -264,8 +264,8 @@ async def delete_private_network(
264
264
) -> Optional [None ]:
265
265
"""
266
266
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.
269
269
270
270
Usage:
271
271
::
0 commit comments