pulumi-openstack 5.1.0a1739599864__py3-none-any.whl → 5.5.0a1768543664__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (232) hide show
  1. pulumi_openstack/__init__.py +143 -1
  2. pulumi_openstack/_inputs.py +92 -26
  3. pulumi_openstack/_utilities.py +1 -1
  4. pulumi_openstack/bgpvpn/__init__.py +14 -0
  5. pulumi_openstack/bgpvpn/_inputs.py +129 -0
  6. pulumi_openstack/bgpvpn/network_associate_v2.py +398 -0
  7. pulumi_openstack/bgpvpn/outputs.py +103 -0
  8. pulumi_openstack/bgpvpn/port_associate_v2.py +521 -0
  9. pulumi_openstack/bgpvpn/router_associate_v2.py +452 -0
  10. pulumi_openstack/bgpvpn/v2.py +827 -0
  11. pulumi_openstack/bgpvpn_network_associate_v2.py +79 -72
  12. pulumi_openstack/bgpvpn_port_associate_v2.py +99 -92
  13. pulumi_openstack/bgpvpn_router_associate_v2.py +96 -89
  14. pulumi_openstack/bgpvpn_v2.py +217 -210
  15. pulumi_openstack/blockstorage/__init__.py +2 -1
  16. pulumi_openstack/blockstorage/_inputs.py +47 -47
  17. pulumi_openstack/blockstorage/get_availability_zones_v3.py +18 -18
  18. pulumi_openstack/blockstorage/get_quotaset_v3.py +32 -32
  19. pulumi_openstack/blockstorage/get_snapshot_v3.py +40 -40
  20. pulumi_openstack/blockstorage/get_volume_v3.py +51 -51
  21. pulumi_openstack/blockstorage/outputs.py +40 -40
  22. pulumi_openstack/blockstorage/qos_association_v3.py +54 -53
  23. pulumi_openstack/blockstorage/qos_v3.py +71 -70
  24. pulumi_openstack/blockstorage/quote_set_v3.py +173 -178
  25. pulumi_openstack/blockstorage/volume.py +317 -255
  26. pulumi_openstack/blockstorage/volume_attach.py +234 -233
  27. pulumi_openstack/blockstorage/volume_type_access_v3.py +54 -53
  28. pulumi_openstack/blockstorage/volume_type_v3.py +88 -87
  29. pulumi_openstack/compute/__init__.py +3 -1
  30. pulumi_openstack/compute/_inputs.py +231 -231
  31. pulumi_openstack/compute/aggregate_v2.py +88 -87
  32. pulumi_openstack/compute/flavor.py +207 -206
  33. pulumi_openstack/compute/flavor_access.py +54 -53
  34. pulumi_openstack/compute/get_aggregate_v2.py +47 -25
  35. pulumi_openstack/compute/get_availability_zones.py +18 -18
  36. pulumi_openstack/compute/get_flavor.py +78 -78
  37. pulumi_openstack/compute/get_hypervisor_v2.py +47 -25
  38. pulumi_openstack/compute/get_instance_v2.py +56 -49
  39. pulumi_openstack/compute/get_keypair.py +26 -26
  40. pulumi_openstack/compute/get_limits_v2.py +54 -54
  41. pulumi_openstack/compute/get_quota_set_v2.py +44 -44
  42. pulumi_openstack/compute/get_servergroup_v2.py +218 -0
  43. pulumi_openstack/compute/instance.py +498 -446
  44. pulumi_openstack/compute/interface_attach.py +208 -87
  45. pulumi_openstack/compute/keypair.py +106 -105
  46. pulumi_openstack/compute/outputs.py +168 -155
  47. pulumi_openstack/compute/quota_set_v2.py +275 -280
  48. pulumi_openstack/compute/server_group.py +83 -82
  49. pulumi_openstack/compute/volume_attach.py +214 -103
  50. pulumi_openstack/config/__init__.py +2 -1
  51. pulumi_openstack/config/__init__.pyi +14 -10
  52. pulumi_openstack/config/vars.py +46 -42
  53. pulumi_openstack/containerinfra/__init__.py +2 -1
  54. pulumi_openstack/containerinfra/cluster.py +376 -376
  55. pulumi_openstack/containerinfra/cluster_template.py +543 -543
  56. pulumi_openstack/containerinfra/get_cluster.py +66 -66
  57. pulumi_openstack/containerinfra/get_cluster_template.py +78 -78
  58. pulumi_openstack/containerinfra/get_node_group.py +44 -44
  59. pulumi_openstack/containerinfra/node_group.py +230 -229
  60. pulumi_openstack/database/__init__.py +2 -1
  61. pulumi_openstack/database/_inputs.py +110 -110
  62. pulumi_openstack/database/configuration.py +60 -59
  63. pulumi_openstack/database/database.py +64 -56
  64. pulumi_openstack/database/instance.py +173 -111
  65. pulumi_openstack/database/outputs.py +74 -74
  66. pulumi_openstack/database/user.py +111 -103
  67. pulumi_openstack/dns/__init__.py +5 -1
  68. pulumi_openstack/dns/get_dns_zone.py +106 -106
  69. pulumi_openstack/dns/get_zone_share_v2.py +230 -0
  70. pulumi_openstack/dns/quota_v2.py +495 -0
  71. pulumi_openstack/dns/record_set.py +173 -172
  72. pulumi_openstack/dns/transfer_accept.py +105 -111
  73. pulumi_openstack/dns/transfer_request.py +135 -141
  74. pulumi_openstack/dns/zone.py +209 -215
  75. pulumi_openstack/dns/zone_share_v2.py +381 -0
  76. pulumi_openstack/firewall/__init__.py +5 -1
  77. pulumi_openstack/firewall/get_group_v2.py +334 -0
  78. pulumi_openstack/firewall/get_policy_v2.py +271 -0
  79. pulumi_openstack/firewall/get_rule_v2.py +428 -0
  80. pulumi_openstack/firewall/group_v2.py +182 -181
  81. pulumi_openstack/firewall/policy_v2.py +139 -138
  82. pulumi_openstack/firewall/rule_v2.py +241 -240
  83. pulumi_openstack/get_fw_group_v2.py +78 -74
  84. pulumi_openstack/get_fw_policy_v2.py +60 -56
  85. pulumi_openstack/get_fw_rule_v2.py +106 -102
  86. pulumi_openstack/identity/__init__.py +4 -1
  87. pulumi_openstack/identity/_inputs.py +32 -32
  88. pulumi_openstack/identity/application_credential.py +134 -133
  89. pulumi_openstack/identity/ec2_credential_v3.py +81 -80
  90. pulumi_openstack/identity/endpoint_v3.py +123 -122
  91. pulumi_openstack/identity/get_auth_scope.py +46 -46
  92. pulumi_openstack/identity/get_endpoint.py +48 -48
  93. pulumi_openstack/identity/get_group.py +24 -24
  94. pulumi_openstack/identity/get_project.py +53 -51
  95. pulumi_openstack/identity/get_project_ids_v3.py +56 -52
  96. pulumi_openstack/identity/get_role.py +22 -22
  97. pulumi_openstack/identity/get_service.py +30 -30
  98. pulumi_openstack/identity/get_user.py +59 -57
  99. pulumi_openstack/identity/group_v3.py +71 -70
  100. pulumi_openstack/identity/inherit_role_assignment.py +128 -100
  101. pulumi_openstack/identity/limit_v3.py +532 -0
  102. pulumi_openstack/identity/outputs.py +64 -64
  103. pulumi_openstack/identity/project.py +139 -138
  104. pulumi_openstack/identity/registered_limit_v3.py +434 -0
  105. pulumi_openstack/identity/role.py +54 -53
  106. pulumi_openstack/identity/role_assignment.py +128 -100
  107. pulumi_openstack/identity/service_v3.py +88 -87
  108. pulumi_openstack/identity/user.py +210 -209
  109. pulumi_openstack/identity/user_membership_v3.py +54 -53
  110. pulumi_openstack/images/__init__.py +2 -1
  111. pulumi_openstack/images/get_image.py +120 -120
  112. pulumi_openstack/images/get_image_ids.py +96 -96
  113. pulumi_openstack/images/image.py +420 -419
  114. pulumi_openstack/images/image_access.py +98 -97
  115. pulumi_openstack/images/image_access_accept.py +98 -97
  116. pulumi_openstack/keymanager/__init__.py +2 -1
  117. pulumi_openstack/keymanager/_inputs.py +113 -113
  118. pulumi_openstack/keymanager/container_v1.py +107 -106
  119. pulumi_openstack/keymanager/get_container.py +31 -31
  120. pulumi_openstack/keymanager/get_secret.py +87 -87
  121. pulumi_openstack/keymanager/order_v1.py +121 -120
  122. pulumi_openstack/keymanager/outputs.py +129 -129
  123. pulumi_openstack/keymanager/secret_v1.py +290 -255
  124. pulumi_openstack/lb_flavorprofile_v2.py +111 -70
  125. pulumi_openstack/lb_loadbalancer_v2.py +266 -261
  126. pulumi_openstack/loadbalancer/__init__.py +10 -1
  127. pulumi_openstack/loadbalancer/_inputs.py +75 -75
  128. pulumi_openstack/loadbalancer/flavor_v2.py +447 -0
  129. pulumi_openstack/loadbalancer/flavorprofile_v2.py +430 -0
  130. pulumi_openstack/loadbalancer/get_flavor_v2.py +28 -28
  131. pulumi_openstack/loadbalancer/get_flavorprofile_v2.py +190 -0
  132. pulumi_openstack/loadbalancer/get_lb_flavor_deprecated.py +197 -0
  133. pulumi_openstack/loadbalancer/get_listener_v2.py +634 -0
  134. pulumi_openstack/loadbalancer/get_loadbalancer_v2.py +470 -0
  135. pulumi_openstack/loadbalancer/get_pool_v2.py +482 -0
  136. pulumi_openstack/loadbalancer/l7_policy_v2.py +209 -208
  137. pulumi_openstack/loadbalancer/l7_rule_v2.py +167 -166
  138. pulumi_openstack/loadbalancer/listener.py +481 -480
  139. pulumi_openstack/loadbalancer/load_balancer.py +1033 -0
  140. pulumi_openstack/loadbalancer/member.py +224 -223
  141. pulumi_openstack/loadbalancer/members.py +40 -39
  142. pulumi_openstack/loadbalancer/monitor.py +258 -257
  143. pulumi_openstack/loadbalancer/outputs.py +311 -51
  144. pulumi_openstack/loadbalancer/pool.py +291 -290
  145. pulumi_openstack/loadbalancer/quota.py +156 -161
  146. pulumi_openstack/networking/__init__.py +8 -1
  147. pulumi_openstack/networking/_inputs.py +234 -141
  148. pulumi_openstack/networking/address_group_v2.py +421 -0
  149. pulumi_openstack/networking/address_scope.py +88 -87
  150. pulumi_openstack/networking/bgp_peer_v2.py +550 -0
  151. pulumi_openstack/networking/bgp_speaker_v2.py +697 -0
  152. pulumi_openstack/networking/floating_ip.py +247 -247
  153. pulumi_openstack/networking/floating_ip_associate.py +67 -66
  154. pulumi_openstack/networking/get_address_scope.py +34 -34
  155. pulumi_openstack/networking/get_floating_ip.py +64 -64
  156. pulumi_openstack/networking/get_network.py +83 -83
  157. pulumi_openstack/networking/get_port.py +109 -109
  158. pulumi_openstack/networking/get_port_ids.py +104 -104
  159. pulumi_openstack/networking/get_qos_bandwidth_limit_rule.py +30 -30
  160. pulumi_openstack/networking/get_qos_dscp_marking_rule.py +22 -22
  161. pulumi_openstack/networking/get_qos_minimum_bandwidth_rule.py +26 -26
  162. pulumi_openstack/networking/get_qos_policy.py +54 -54
  163. pulumi_openstack/networking/get_quota_v2.py +34 -34
  164. pulumi_openstack/networking/get_router.py +100 -72
  165. pulumi_openstack/networking/get_sec_group.py +48 -48
  166. pulumi_openstack/networking/get_segment_v2.py +303 -0
  167. pulumi_openstack/networking/get_subnet.py +124 -105
  168. pulumi_openstack/networking/get_subnet_ids_v2.py +126 -107
  169. pulumi_openstack/networking/get_subnet_pool.py +92 -92
  170. pulumi_openstack/networking/get_trunk.py +61 -61
  171. pulumi_openstack/networking/network.py +270 -269
  172. pulumi_openstack/networking/outputs.py +287 -177
  173. pulumi_openstack/networking/port.py +356 -355
  174. pulumi_openstack/networking/port_forwarding_v2.py +139 -138
  175. pulumi_openstack/networking/port_sec_group_associate.py +80 -79
  176. pulumi_openstack/networking/qos_bandwidth_limit_rule.py +88 -87
  177. pulumi_openstack/networking/qos_dscp_marking_rule.py +54 -53
  178. pulumi_openstack/networking/qos_minimum_bandwidth_rule.py +71 -70
  179. pulumi_openstack/networking/qos_policy.py +175 -174
  180. pulumi_openstack/networking/quota_v2.py +190 -195
  181. pulumi_openstack/networking/rbac_policy_v2.py +95 -94
  182. pulumi_openstack/networking/router.py +286 -224
  183. pulumi_openstack/networking/router_interface.py +88 -87
  184. pulumi_openstack/networking/router_route.py +71 -70
  185. pulumi_openstack/networking/router_routes_v2.py +382 -0
  186. pulumi_openstack/networking/sec_group.py +131 -130
  187. pulumi_openstack/networking/sec_group_rule.py +258 -189
  188. pulumi_openstack/networking/segment_v2.py +633 -0
  189. pulumi_openstack/networking/subnet.py +399 -337
  190. pulumi_openstack/networking/subnet_pool.py +294 -293
  191. pulumi_openstack/networking/subnet_route.py +71 -70
  192. pulumi_openstack/networking/trunk.py +134 -133
  193. pulumi_openstack/objectstorage/__init__.py +2 -1
  194. pulumi_openstack/objectstorage/_inputs.py +22 -16
  195. pulumi_openstack/objectstorage/account_v1.py +99 -98
  196. pulumi_openstack/objectstorage/container.py +429 -308
  197. pulumi_openstack/objectstorage/container_object.py +298 -289
  198. pulumi_openstack/objectstorage/outputs.py +15 -11
  199. pulumi_openstack/objectstorage/temp_url.py +165 -164
  200. pulumi_openstack/orchestration/__init__.py +2 -1
  201. pulumi_openstack/orchestration/_inputs.py +18 -18
  202. pulumi_openstack/orchestration/outputs.py +12 -12
  203. pulumi_openstack/orchestration/stack_v1.py +278 -277
  204. pulumi_openstack/outputs.py +75 -18
  205. pulumi_openstack/provider.py +351 -316
  206. pulumi_openstack/pulumi-plugin.json +1 -1
  207. pulumi_openstack/sharedfilesystem/__init__.py +2 -1
  208. pulumi_openstack/sharedfilesystem/_inputs.py +12 -12
  209. pulumi_openstack/sharedfilesystem/get_availbility_zones.py +12 -12
  210. pulumi_openstack/sharedfilesystem/get_share.py +72 -68
  211. pulumi_openstack/sharedfilesystem/get_share_network.py +64 -64
  212. pulumi_openstack/sharedfilesystem/get_snapshot.py +42 -42
  213. pulumi_openstack/sharedfilesystem/outputs.py +14 -14
  214. pulumi_openstack/sharedfilesystem/security_service.py +182 -181
  215. pulumi_openstack/sharedfilesystem/share.py +263 -262
  216. pulumi_openstack/sharedfilesystem/share_access.py +123 -122
  217. pulumi_openstack/sharedfilesystem/share_network.py +150 -149
  218. pulumi_openstack/taas_tap_mirror_v2.py +653 -0
  219. pulumi_openstack/vpnaas/__init__.py +2 -1
  220. pulumi_openstack/vpnaas/_inputs.py +42 -42
  221. pulumi_openstack/vpnaas/endpoint_group.py +122 -121
  222. pulumi_openstack/vpnaas/ike_policy.py +213 -198
  223. pulumi_openstack/vpnaas/ip_sec_policy.py +213 -198
  224. pulumi_openstack/vpnaas/outputs.py +28 -28
  225. pulumi_openstack/vpnaas/service.py +166 -165
  226. pulumi_openstack/vpnaas/site_connection.py +312 -311
  227. pulumi_openstack/workflow_workflow_v2.py +244 -0
  228. {pulumi_openstack-5.1.0a1739599864.dist-info → pulumi_openstack-5.5.0a1768543664.dist-info}/METADATA +4 -4
  229. pulumi_openstack-5.5.0a1768543664.dist-info/RECORD +232 -0
  230. {pulumi_openstack-5.1.0a1739599864.dist-info → pulumi_openstack-5.5.0a1768543664.dist-info}/WHEEL +1 -1
  231. pulumi_openstack-5.1.0a1739599864.dist-info/RECORD +0 -200
  232. {pulumi_openstack-5.1.0a1739599864.dist-info → pulumi_openstack-5.5.0a1768543664.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins as _builtins
5
6
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
@@ -15,11 +16,15 @@ from .get_fw_rule_v2 import *
15
16
  from .lb_flavorprofile_v2 import *
16
17
  from .lb_loadbalancer_v2 import *
17
18
  from .provider import *
19
+ from .taas_tap_mirror_v2 import *
20
+ from .workflow_workflow_v2 import *
18
21
  from ._inputs import *
19
22
  from . import outputs
20
23
 
21
24
  # Make subpackages available:
22
25
  if typing.TYPE_CHECKING:
26
+ import pulumi_openstack.bgpvpn as __bgpvpn
27
+ bgpvpn = __bgpvpn
23
28
  import pulumi_openstack.blockstorage as __blockstorage
24
29
  blockstorage = __blockstorage
25
30
  import pulumi_openstack.compute as __compute
@@ -53,6 +58,7 @@ if typing.TYPE_CHECKING:
53
58
  import pulumi_openstack.vpnaas as __vpnaas
54
59
  vpnaas = __vpnaas
55
60
  else:
61
+ bgpvpn = _utilities.lazy_import('pulumi_openstack.bgpvpn')
56
62
  blockstorage = _utilities.lazy_import('pulumi_openstack.blockstorage')
57
63
  compute = _utilities.lazy_import('pulumi_openstack.compute')
58
64
  config = _utilities.lazy_import('pulumi_openstack.config')
@@ -73,6 +79,38 @@ else:
73
79
  _utilities.register(
74
80
  resource_modules="""
75
81
  [
82
+ {
83
+ "pkg": "openstack",
84
+ "mod": "bgpvpn/networkAssociateV2",
85
+ "fqn": "pulumi_openstack.bgpvpn",
86
+ "classes": {
87
+ "openstack:bgpvpn/networkAssociateV2:NetworkAssociateV2": "NetworkAssociateV2"
88
+ }
89
+ },
90
+ {
91
+ "pkg": "openstack",
92
+ "mod": "bgpvpn/portAssociateV2",
93
+ "fqn": "pulumi_openstack.bgpvpn",
94
+ "classes": {
95
+ "openstack:bgpvpn/portAssociateV2:PortAssociateV2": "PortAssociateV2"
96
+ }
97
+ },
98
+ {
99
+ "pkg": "openstack",
100
+ "mod": "bgpvpn/routerAssociateV2",
101
+ "fqn": "pulumi_openstack.bgpvpn",
102
+ "classes": {
103
+ "openstack:bgpvpn/routerAssociateV2:RouterAssociateV2": "RouterAssociateV2"
104
+ }
105
+ },
106
+ {
107
+ "pkg": "openstack",
108
+ "mod": "bgpvpn/v2",
109
+ "fqn": "pulumi_openstack.bgpvpn",
110
+ "classes": {
111
+ "openstack:bgpvpn/v2:V2": "V2"
112
+ }
113
+ },
76
114
  {
77
115
  "pkg": "openstack",
78
116
  "mod": "blockstorage/qosAssociationV3",
@@ -257,6 +295,14 @@ _utilities.register(
257
295
  "openstack:database/user:User": "User"
258
296
  }
259
297
  },
298
+ {
299
+ "pkg": "openstack",
300
+ "mod": "dns/quotaV2",
301
+ "fqn": "pulumi_openstack.dns",
302
+ "classes": {
303
+ "openstack:dns/quotaV2:QuotaV2": "QuotaV2"
304
+ }
305
+ },
260
306
  {
261
307
  "pkg": "openstack",
262
308
  "mod": "dns/recordSet",
@@ -289,6 +335,14 @@ _utilities.register(
289
335
  "openstack:dns/zone:Zone": "Zone"
290
336
  }
291
337
  },
338
+ {
339
+ "pkg": "openstack",
340
+ "mod": "dns/zoneShareV2",
341
+ "fqn": "pulumi_openstack.dns",
342
+ "classes": {
343
+ "openstack:dns/zoneShareV2:ZoneShareV2": "ZoneShareV2"
344
+ }
345
+ },
292
346
  {
293
347
  "pkg": "openstack",
294
348
  "mod": "firewall/groupV2",
@@ -353,6 +407,14 @@ _utilities.register(
353
407
  "openstack:identity/inheritRoleAssignment:InheritRoleAssignment": "InheritRoleAssignment"
354
408
  }
355
409
  },
410
+ {
411
+ "pkg": "openstack",
412
+ "mod": "identity/limitV3",
413
+ "fqn": "pulumi_openstack.identity",
414
+ "classes": {
415
+ "openstack:identity/limitV3:LimitV3": "LimitV3"
416
+ }
417
+ },
356
418
  {
357
419
  "pkg": "openstack",
358
420
  "mod": "identity/project",
@@ -361,6 +423,14 @@ _utilities.register(
361
423
  "openstack:identity/project:Project": "Project"
362
424
  }
363
425
  },
426
+ {
427
+ "pkg": "openstack",
428
+ "mod": "identity/registeredLimitV3",
429
+ "fqn": "pulumi_openstack.identity",
430
+ "classes": {
431
+ "openstack:identity/registeredLimitV3:RegisteredLimitV3": "RegisteredLimitV3"
432
+ }
433
+ },
364
434
  {
365
435
  "pkg": "openstack",
366
436
  "mod": "identity/role",
@@ -473,6 +543,14 @@ _utilities.register(
473
543
  "openstack:index/lbLoadbalancerV2:LbLoadbalancerV2": "LbLoadbalancerV2"
474
544
  }
475
545
  },
546
+ {
547
+ "pkg": "openstack",
548
+ "mod": "index/taasTapMirrorV2",
549
+ "fqn": "pulumi_openstack",
550
+ "classes": {
551
+ "openstack:index/taasTapMirrorV2:TaasTapMirrorV2": "TaasTapMirrorV2"
552
+ }
553
+ },
476
554
  {
477
555
  "pkg": "openstack",
478
556
  "mod": "keymanager/containerV1",
@@ -497,6 +575,22 @@ _utilities.register(
497
575
  "openstack:keymanager/secretV1:SecretV1": "SecretV1"
498
576
  }
499
577
  },
578
+ {
579
+ "pkg": "openstack",
580
+ "mod": "loadbalancer/flavorV2",
581
+ "fqn": "pulumi_openstack.loadbalancer",
582
+ "classes": {
583
+ "openstack:loadbalancer/flavorV2:FlavorV2": "FlavorV2"
584
+ }
585
+ },
586
+ {
587
+ "pkg": "openstack",
588
+ "mod": "loadbalancer/flavorprofileV2",
589
+ "fqn": "pulumi_openstack.loadbalancer",
590
+ "classes": {
591
+ "openstack:loadbalancer/flavorprofileV2:FlavorprofileV2": "FlavorprofileV2"
592
+ }
593
+ },
500
594
  {
501
595
  "pkg": "openstack",
502
596
  "mod": "loadbalancer/l7PolicyV2",
@@ -521,6 +615,14 @@ _utilities.register(
521
615
  "openstack:loadbalancer/listener:Listener": "Listener"
522
616
  }
523
617
  },
618
+ {
619
+ "pkg": "openstack",
620
+ "mod": "loadbalancer/loadBalancer",
621
+ "fqn": "pulumi_openstack.loadbalancer",
622
+ "classes": {
623
+ "openstack:loadbalancer/loadBalancer:LoadBalancer": "LoadBalancer"
624
+ }
625
+ },
524
626
  {
525
627
  "pkg": "openstack",
526
628
  "mod": "loadbalancer/member",
@@ -561,6 +663,14 @@ _utilities.register(
561
663
  "openstack:loadbalancer/quota:Quota": "Quota"
562
664
  }
563
665
  },
666
+ {
667
+ "pkg": "openstack",
668
+ "mod": "networking/addressGroupV2",
669
+ "fqn": "pulumi_openstack.networking",
670
+ "classes": {
671
+ "openstack:networking/addressGroupV2:AddressGroupV2": "AddressGroupV2"
672
+ }
673
+ },
564
674
  {
565
675
  "pkg": "openstack",
566
676
  "mod": "networking/addressScope",
@@ -569,6 +679,22 @@ _utilities.register(
569
679
  "openstack:networking/addressScope:AddressScope": "AddressScope"
570
680
  }
571
681
  },
682
+ {
683
+ "pkg": "openstack",
684
+ "mod": "networking/bgpPeerV2",
685
+ "fqn": "pulumi_openstack.networking",
686
+ "classes": {
687
+ "openstack:networking/bgpPeerV2:BgpPeerV2": "BgpPeerV2"
688
+ }
689
+ },
690
+ {
691
+ "pkg": "openstack",
692
+ "mod": "networking/bgpSpeakerV2",
693
+ "fqn": "pulumi_openstack.networking",
694
+ "classes": {
695
+ "openstack:networking/bgpSpeakerV2:BgpSpeakerV2": "BgpSpeakerV2"
696
+ }
697
+ },
572
698
  {
573
699
  "pkg": "openstack",
574
700
  "mod": "networking/floatingIp",
@@ -689,6 +815,14 @@ _utilities.register(
689
815
  "openstack:networking/routerRoute:RouterRoute": "RouterRoute"
690
816
  }
691
817
  },
818
+ {
819
+ "pkg": "openstack",
820
+ "mod": "networking/routerRoutesV2",
821
+ "fqn": "pulumi_openstack.networking",
822
+ "classes": {
823
+ "openstack:networking/routerRoutesV2:RouterRoutesV2": "RouterRoutesV2"
824
+ }
825
+ },
692
826
  {
693
827
  "pkg": "openstack",
694
828
  "mod": "networking/secGroup",
@@ -705,6 +839,14 @@ _utilities.register(
705
839
  "openstack:networking/secGroupRule:SecGroupRule": "SecGroupRule"
706
840
  }
707
841
  },
842
+ {
843
+ "pkg": "openstack",
844
+ "mod": "networking/segmentV2",
845
+ "fqn": "pulumi_openstack.networking",
846
+ "classes": {
847
+ "openstack:networking/segmentV2:SegmentV2": "SegmentV2"
848
+ }
849
+ },
708
850
  {
709
851
  "pkg": "openstack",
710
852
  "mod": "networking/subnet",
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -17,29 +17,31 @@ from . import _utilities
17
17
  __all__ = [
18
18
  'BgpvpnPortAssociateV2RouteArgs',
19
19
  'BgpvpnPortAssociateV2RouteArgsDict',
20
+ 'TaasTapMirrorV2DirectionsArgs',
21
+ 'TaasTapMirrorV2DirectionsArgsDict',
20
22
  ]
21
23
 
22
24
  MYPY = False
23
25
 
24
26
  if not MYPY:
25
27
  class BgpvpnPortAssociateV2RouteArgsDict(TypedDict):
26
- type: pulumi.Input[str]
28
+ type: pulumi.Input[_builtins.str]
27
29
  """
28
30
  Can be `prefix` or `bgpvpn`. For the `prefix` type, the
29
31
  CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
30
32
  `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpn_id` key.
31
33
  """
32
- bgpvpn_id: NotRequired[pulumi.Input[str]]
34
+ bgpvpn_id: NotRequired[pulumi.Input[_builtins.str]]
33
35
  """
34
36
  The ID of the BGP VPN to be advertised. Required
35
37
  if `type` is `bgpvpn`. Conflicts with `prefix`.
36
38
  """
37
- local_pref: NotRequired[pulumi.Input[int]]
39
+ local_pref: NotRequired[pulumi.Input[_builtins.int]]
38
40
  """
39
41
  The BGP LOCAL\\_PREF value of the routes that will
40
42
  be advertised.
41
43
  """
42
- prefix: NotRequired[pulumi.Input[str]]
44
+ prefix: NotRequired[pulumi.Input[_builtins.str]]
43
45
  """
44
46
  The CIDR prefix (v4 or v6) to be advertised. Required
45
47
  if `type` is `prefix`. Conflicts with `bgpvpn_id`.
@@ -50,19 +52,19 @@ elif False:
50
52
  @pulumi.input_type
51
53
  class BgpvpnPortAssociateV2RouteArgs:
52
54
  def __init__(__self__, *,
53
- type: pulumi.Input[str],
54
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
55
- local_pref: Optional[pulumi.Input[int]] = None,
56
- prefix: Optional[pulumi.Input[str]] = None):
55
+ type: pulumi.Input[_builtins.str],
56
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
57
+ local_pref: Optional[pulumi.Input[_builtins.int]] = None,
58
+ prefix: Optional[pulumi.Input[_builtins.str]] = None):
57
59
  """
58
- :param pulumi.Input[str] type: Can be `prefix` or `bgpvpn`. For the `prefix` type, the
60
+ :param pulumi.Input[_builtins.str] type: Can be `prefix` or `bgpvpn`. For the `prefix` type, the
59
61
  CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
60
62
  `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpn_id` key.
61
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to be advertised. Required
63
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to be advertised. Required
62
64
  if `type` is `bgpvpn`. Conflicts with `prefix`.
63
- :param pulumi.Input[int] local_pref: The BGP LOCAL\\_PREF value of the routes that will
65
+ :param pulumi.Input[_builtins.int] local_pref: The BGP LOCAL\\_PREF value of the routes that will
64
66
  be advertised.
65
- :param pulumi.Input[str] prefix: The CIDR prefix (v4 or v6) to be advertised. Required
67
+ :param pulumi.Input[_builtins.str] prefix: The CIDR prefix (v4 or v6) to be advertised. Required
66
68
  if `type` is `prefix`. Conflicts with `bgpvpn_id`.
67
69
  """
68
70
  pulumi.set(__self__, "type", type)
@@ -73,9 +75,9 @@ class BgpvpnPortAssociateV2RouteArgs:
73
75
  if prefix is not None:
74
76
  pulumi.set(__self__, "prefix", prefix)
75
77
 
76
- @property
78
+ @_builtins.property
77
79
  @pulumi.getter
78
- def type(self) -> pulumi.Input[str]:
80
+ def type(self) -> pulumi.Input[_builtins.str]:
79
81
  """
80
82
  Can be `prefix` or `bgpvpn`. For the `prefix` type, the
81
83
  CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
@@ -84,12 +86,12 @@ class BgpvpnPortAssociateV2RouteArgs:
84
86
  return pulumi.get(self, "type")
85
87
 
86
88
  @type.setter
87
- def type(self, value: pulumi.Input[str]):
89
+ def type(self, value: pulumi.Input[_builtins.str]):
88
90
  pulumi.set(self, "type", value)
89
91
 
90
- @property
92
+ @_builtins.property
91
93
  @pulumi.getter(name="bgpvpnId")
92
- def bgpvpn_id(self) -> Optional[pulumi.Input[str]]:
94
+ def bgpvpn_id(self) -> Optional[pulumi.Input[_builtins.str]]:
93
95
  """
94
96
  The ID of the BGP VPN to be advertised. Required
95
97
  if `type` is `bgpvpn`. Conflicts with `prefix`.
@@ -97,12 +99,12 @@ class BgpvpnPortAssociateV2RouteArgs:
97
99
  return pulumi.get(self, "bgpvpn_id")
98
100
 
99
101
  @bgpvpn_id.setter
100
- def bgpvpn_id(self, value: Optional[pulumi.Input[str]]):
102
+ def bgpvpn_id(self, value: Optional[pulumi.Input[_builtins.str]]):
101
103
  pulumi.set(self, "bgpvpn_id", value)
102
104
 
103
- @property
105
+ @_builtins.property
104
106
  @pulumi.getter(name="localPref")
105
- def local_pref(self) -> Optional[pulumi.Input[int]]:
107
+ def local_pref(self) -> Optional[pulumi.Input[_builtins.int]]:
106
108
  """
107
109
  The BGP LOCAL\\_PREF value of the routes that will
108
110
  be advertised.
@@ -110,12 +112,12 @@ class BgpvpnPortAssociateV2RouteArgs:
110
112
  return pulumi.get(self, "local_pref")
111
113
 
112
114
  @local_pref.setter
113
- def local_pref(self, value: Optional[pulumi.Input[int]]):
115
+ def local_pref(self, value: Optional[pulumi.Input[_builtins.int]]):
114
116
  pulumi.set(self, "local_pref", value)
115
117
 
116
- @property
118
+ @_builtins.property
117
119
  @pulumi.getter
118
- def prefix(self) -> Optional[pulumi.Input[str]]:
120
+ def prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
119
121
  """
120
122
  The CIDR prefix (v4 or v6) to be advertised. Required
121
123
  if `type` is `prefix`. Conflicts with `bgpvpn_id`.
@@ -123,7 +125,71 @@ class BgpvpnPortAssociateV2RouteArgs:
123
125
  return pulumi.get(self, "prefix")
124
126
 
125
127
  @prefix.setter
126
- def prefix(self, value: Optional[pulumi.Input[str]]):
128
+ def prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
127
129
  pulumi.set(self, "prefix", value)
128
130
 
129
131
 
132
+ if not MYPY:
133
+ class TaasTapMirrorV2DirectionsArgsDict(TypedDict):
134
+ in_: NotRequired[pulumi.Input[_builtins.int]]
135
+ """
136
+ Declares ingress traffic to the port will be mirrored. The value
137
+ is the identifier of the ERSPAN or GRE session between the source and destination,
138
+ this must be unique within the project.
139
+ """
140
+ out: NotRequired[pulumi.Input[_builtins.int]]
141
+ """
142
+ Declares egress traffic will be mirrored. The value is the
143
+ identifier of the ERSPAN or GRE session between the source and destination,
144
+ this must be unique within the project.
145
+ """
146
+ elif False:
147
+ TaasTapMirrorV2DirectionsArgsDict: TypeAlias = Mapping[str, Any]
148
+
149
+ @pulumi.input_type
150
+ class TaasTapMirrorV2DirectionsArgs:
151
+ def __init__(__self__, *,
152
+ in_: Optional[pulumi.Input[_builtins.int]] = None,
153
+ out: Optional[pulumi.Input[_builtins.int]] = None):
154
+ """
155
+ :param pulumi.Input[_builtins.int] in_: Declares ingress traffic to the port will be mirrored. The value
156
+ is the identifier of the ERSPAN or GRE session between the source and destination,
157
+ this must be unique within the project.
158
+ :param pulumi.Input[_builtins.int] out: Declares egress traffic will be mirrored. The value is the
159
+ identifier of the ERSPAN or GRE session between the source and destination,
160
+ this must be unique within the project.
161
+ """
162
+ if in_ is not None:
163
+ pulumi.set(__self__, "in_", in_)
164
+ if out is not None:
165
+ pulumi.set(__self__, "out", out)
166
+
167
+ @_builtins.property
168
+ @pulumi.getter(name="in")
169
+ def in_(self) -> Optional[pulumi.Input[_builtins.int]]:
170
+ """
171
+ Declares ingress traffic to the port will be mirrored. The value
172
+ is the identifier of the ERSPAN or GRE session between the source and destination,
173
+ this must be unique within the project.
174
+ """
175
+ return pulumi.get(self, "in_")
176
+
177
+ @in_.setter
178
+ def in_(self, value: Optional[pulumi.Input[_builtins.int]]):
179
+ pulumi.set(self, "in_", value)
180
+
181
+ @_builtins.property
182
+ @pulumi.getter
183
+ def out(self) -> Optional[pulumi.Input[_builtins.int]]:
184
+ """
185
+ Declares egress traffic will be mirrored. The value is the
186
+ identifier of the ERSPAN or GRE session between the source and destination,
187
+ this must be unique within the project.
188
+ """
189
+ return pulumi.get(self, "out")
190
+
191
+ @out.setter
192
+ def out(self, value: Optional[pulumi.Input[_builtins.int]]):
193
+ pulumi.set(self, "out", value)
194
+
195
+
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
5
 
@@ -0,0 +1,14 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ from .. import _utilities
7
+ import typing
8
+ # Export this package's modules as members:
9
+ from .network_associate_v2 import *
10
+ from .port_associate_v2 import *
11
+ from .router_associate_v2 import *
12
+ from .v2 import *
13
+ from ._inputs import *
14
+ from . import outputs
@@ -0,0 +1,129 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'PortAssociateV2RouteArgs',
19
+ 'PortAssociateV2RouteArgsDict',
20
+ ]
21
+
22
+ MYPY = False
23
+
24
+ if not MYPY:
25
+ class PortAssociateV2RouteArgsDict(TypedDict):
26
+ type: pulumi.Input[_builtins.str]
27
+ """
28
+ Can be `prefix` or `bgpvpn`. For the `prefix` type, the
29
+ CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
30
+ `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpn_id` key.
31
+ """
32
+ bgpvpn_id: NotRequired[pulumi.Input[_builtins.str]]
33
+ """
34
+ The ID of the BGP VPN to be advertised. Required
35
+ if `type` is `bgpvpn`. Conflicts with `prefix`.
36
+ """
37
+ local_pref: NotRequired[pulumi.Input[_builtins.int]]
38
+ """
39
+ The BGP LOCAL\\_PREF value of the routes that will
40
+ be advertised.
41
+ """
42
+ prefix: NotRequired[pulumi.Input[_builtins.str]]
43
+ """
44
+ The CIDR prefix (v4 or v6) to be advertised. Required
45
+ if `type` is `prefix`. Conflicts with `bgpvpn_id`.
46
+ """
47
+ elif False:
48
+ PortAssociateV2RouteArgsDict: TypeAlias = Mapping[str, Any]
49
+
50
+ @pulumi.input_type
51
+ class PortAssociateV2RouteArgs:
52
+ def __init__(__self__, *,
53
+ type: pulumi.Input[_builtins.str],
54
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
55
+ local_pref: Optional[pulumi.Input[_builtins.int]] = None,
56
+ prefix: Optional[pulumi.Input[_builtins.str]] = None):
57
+ """
58
+ :param pulumi.Input[_builtins.str] type: Can be `prefix` or `bgpvpn`. For the `prefix` type, the
59
+ CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
60
+ `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpn_id` key.
61
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to be advertised. Required
62
+ if `type` is `bgpvpn`. Conflicts with `prefix`.
63
+ :param pulumi.Input[_builtins.int] local_pref: The BGP LOCAL\\_PREF value of the routes that will
64
+ be advertised.
65
+ :param pulumi.Input[_builtins.str] prefix: The CIDR prefix (v4 or v6) to be advertised. Required
66
+ if `type` is `prefix`. Conflicts with `bgpvpn_id`.
67
+ """
68
+ pulumi.set(__self__, "type", type)
69
+ if bgpvpn_id is not None:
70
+ pulumi.set(__self__, "bgpvpn_id", bgpvpn_id)
71
+ if local_pref is not None:
72
+ pulumi.set(__self__, "local_pref", local_pref)
73
+ if prefix is not None:
74
+ pulumi.set(__self__, "prefix", prefix)
75
+
76
+ @_builtins.property
77
+ @pulumi.getter
78
+ def type(self) -> pulumi.Input[_builtins.str]:
79
+ """
80
+ Can be `prefix` or `bgpvpn`. For the `prefix` type, the
81
+ CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
82
+ `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpn_id` key.
83
+ """
84
+ return pulumi.get(self, "type")
85
+
86
+ @type.setter
87
+ def type(self, value: pulumi.Input[_builtins.str]):
88
+ pulumi.set(self, "type", value)
89
+
90
+ @_builtins.property
91
+ @pulumi.getter(name="bgpvpnId")
92
+ def bgpvpn_id(self) -> Optional[pulumi.Input[_builtins.str]]:
93
+ """
94
+ The ID of the BGP VPN to be advertised. Required
95
+ if `type` is `bgpvpn`. Conflicts with `prefix`.
96
+ """
97
+ return pulumi.get(self, "bgpvpn_id")
98
+
99
+ @bgpvpn_id.setter
100
+ def bgpvpn_id(self, value: Optional[pulumi.Input[_builtins.str]]):
101
+ pulumi.set(self, "bgpvpn_id", value)
102
+
103
+ @_builtins.property
104
+ @pulumi.getter(name="localPref")
105
+ def local_pref(self) -> Optional[pulumi.Input[_builtins.int]]:
106
+ """
107
+ The BGP LOCAL\\_PREF value of the routes that will
108
+ be advertised.
109
+ """
110
+ return pulumi.get(self, "local_pref")
111
+
112
+ @local_pref.setter
113
+ def local_pref(self, value: Optional[pulumi.Input[_builtins.int]]):
114
+ pulumi.set(self, "local_pref", value)
115
+
116
+ @_builtins.property
117
+ @pulumi.getter
118
+ def prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
119
+ """
120
+ The CIDR prefix (v4 or v6) to be advertised. Required
121
+ if `type` is `prefix`. Conflicts with `bgpvpn_id`.
122
+ """
123
+ return pulumi.get(self, "prefix")
124
+
125
+ @prefix.setter
126
+ def prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
127
+ pulumi.set(self, "prefix", value)
128
+
129
+