pulumi-openstack 5.1.0a1732601510__py3-none-any.whl → 5.5.0a1767139866__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 +9 -5
  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 +20 -20
  18. pulumi_openstack/blockstorage/get_quotaset_v3.py +34 -34
  19. pulumi_openstack/blockstorage/get_snapshot_v3.py +42 -42
  20. pulumi_openstack/blockstorage/get_volume_v3.py +53 -53
  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 +49 -27
  35. pulumi_openstack/compute/get_availability_zones.py +20 -20
  36. pulumi_openstack/compute/get_flavor.py +80 -80
  37. pulumi_openstack/compute/get_hypervisor_v2.py +49 -27
  38. pulumi_openstack/compute/get_instance_v2.py +58 -51
  39. pulumi_openstack/compute/get_keypair.py +28 -28
  40. pulumi_openstack/compute/get_limits_v2.py +56 -56
  41. pulumi_openstack/compute/get_quota_set_v2.py +46 -46
  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 +68 -68
  57. pulumi_openstack/containerinfra/get_cluster_template.py +80 -80
  58. pulumi_openstack/containerinfra/get_node_group.py +46 -46
  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 +108 -108
  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 +80 -76
  84. pulumi_openstack/get_fw_policy_v2.py +62 -58
  85. pulumi_openstack/get_fw_rule_v2.py +108 -104
  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 +48 -48
  92. pulumi_openstack/identity/get_endpoint.py +50 -50
  93. pulumi_openstack/identity/get_group.py +26 -26
  94. pulumi_openstack/identity/get_project.py +55 -53
  95. pulumi_openstack/identity/get_project_ids_v3.py +58 -54
  96. pulumi_openstack/identity/get_role.py +24 -24
  97. pulumi_openstack/identity/get_service.py +32 -32
  98. pulumi_openstack/identity/get_user.py +61 -59
  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 +122 -122
  112. pulumi_openstack/images/get_image_ids.py +98 -98
  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 +33 -33
  120. pulumi_openstack/keymanager/get_secret.py +89 -89
  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 +30 -30
  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 +36 -36
  155. pulumi_openstack/networking/get_floating_ip.py +66 -66
  156. pulumi_openstack/networking/get_network.py +85 -85
  157. pulumi_openstack/networking/get_port.py +111 -111
  158. pulumi_openstack/networking/get_port_ids.py +106 -106
  159. pulumi_openstack/networking/get_qos_bandwidth_limit_rule.py +32 -32
  160. pulumi_openstack/networking/get_qos_dscp_marking_rule.py +24 -24
  161. pulumi_openstack/networking/get_qos_minimum_bandwidth_rule.py +28 -28
  162. pulumi_openstack/networking/get_qos_policy.py +56 -56
  163. pulumi_openstack/networking/get_quota_v2.py +36 -36
  164. pulumi_openstack/networking/get_router.py +102 -74
  165. pulumi_openstack/networking/get_sec_group.py +50 -50
  166. pulumi_openstack/networking/get_segment_v2.py +303 -0
  167. pulumi_openstack/networking/get_subnet.py +126 -107
  168. pulumi_openstack/networking/get_subnet_ids_v2.py +128 -109
  169. pulumi_openstack/networking/get_subnet_pool.py +94 -94
  170. pulumi_openstack/networking/get_trunk.py +63 -63
  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 +14 -14
  210. pulumi_openstack/sharedfilesystem/get_share.py +74 -70
  211. pulumi_openstack/sharedfilesystem/get_share_network.py +66 -66
  212. pulumi_openstack/sharedfilesystem/get_snapshot.py +44 -44
  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.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/METADATA +5 -5
  229. pulumi_openstack-5.5.0a1767139866.dist-info/RECORD +232 -0
  230. {pulumi_openstack-5.1.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/WHEEL +1 -1
  231. pulumi_openstack-5.1.0a1732601510.dist-info/RECORD +0 -200
  232. {pulumi_openstack-5.1.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/top_level.txt +0 -0
@@ -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
@@ -19,24 +19,24 @@ __all__ = ['BgpvpnRouterAssociateV2Args', 'BgpvpnRouterAssociateV2']
19
19
  @pulumi.input_type
20
20
  class BgpvpnRouterAssociateV2Args:
21
21
  def __init__(__self__, *,
22
- bgpvpn_id: pulumi.Input[str],
23
- router_id: pulumi.Input[str],
24
- advertise_extra_routes: Optional[pulumi.Input[bool]] = None,
25
- project_id: Optional[pulumi.Input[str]] = None,
26
- region: Optional[pulumi.Input[str]] = None):
22
+ bgpvpn_id: pulumi.Input[_builtins.str],
23
+ router_id: pulumi.Input[_builtins.str],
24
+ advertise_extra_routes: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
26
+ region: Optional[pulumi.Input[_builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a BgpvpnRouterAssociateV2 resource.
29
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the router will be
29
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the router will be
30
30
  associated. Changing this creates a new BGP VPN router association.
31
- :param pulumi.Input[str] router_id: The ID of the router to be associated with the BGP
31
+ :param pulumi.Input[_builtins.str] router_id: The ID of the router to be associated with the BGP
32
32
  VPN. Changing this creates a new BGP VPN router association.
33
- :param pulumi.Input[bool] advertise_extra_routes: A boolean flag indicating whether extra
33
+ :param pulumi.Input[_builtins.bool] advertise_extra_routes: A boolean flag indicating whether extra
34
34
  routes should be advertised. Defaults to true.
35
- :param pulumi.Input[str] project_id: The ID of the project that owns the BGP VPN router
35
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the BGP VPN router
36
36
  association. Only administrative and users with `advsvc` role can specify a
37
37
  project ID other than their own. Changing this creates a new BGP VPN router
38
38
  association.
39
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
39
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
40
40
  A Networking client is needed to create a BGP VPN router association. If
41
41
  omitted, the `region` argument of the provider is used. Changing this creates
42
42
  a new BGP VPN router association.
@@ -50,9 +50,9 @@ class BgpvpnRouterAssociateV2Args:
50
50
  if region is not None:
51
51
  pulumi.set(__self__, "region", region)
52
52
 
53
- @property
53
+ @_builtins.property
54
54
  @pulumi.getter(name="bgpvpnId")
55
- def bgpvpn_id(self) -> pulumi.Input[str]:
55
+ def bgpvpn_id(self) -> pulumi.Input[_builtins.str]:
56
56
  """
57
57
  The ID of the BGP VPN to which the router will be
58
58
  associated. Changing this creates a new BGP VPN router association.
@@ -60,12 +60,12 @@ class BgpvpnRouterAssociateV2Args:
60
60
  return pulumi.get(self, "bgpvpn_id")
61
61
 
62
62
  @bgpvpn_id.setter
63
- def bgpvpn_id(self, value: pulumi.Input[str]):
63
+ def bgpvpn_id(self, value: pulumi.Input[_builtins.str]):
64
64
  pulumi.set(self, "bgpvpn_id", value)
65
65
 
66
- @property
66
+ @_builtins.property
67
67
  @pulumi.getter(name="routerId")
68
- def router_id(self) -> pulumi.Input[str]:
68
+ def router_id(self) -> pulumi.Input[_builtins.str]:
69
69
  """
70
70
  The ID of the router to be associated with the BGP
71
71
  VPN. Changing this creates a new BGP VPN router association.
@@ -73,12 +73,12 @@ class BgpvpnRouterAssociateV2Args:
73
73
  return pulumi.get(self, "router_id")
74
74
 
75
75
  @router_id.setter
76
- def router_id(self, value: pulumi.Input[str]):
76
+ def router_id(self, value: pulumi.Input[_builtins.str]):
77
77
  pulumi.set(self, "router_id", value)
78
78
 
79
- @property
79
+ @_builtins.property
80
80
  @pulumi.getter(name="advertiseExtraRoutes")
81
- def advertise_extra_routes(self) -> Optional[pulumi.Input[bool]]:
81
+ def advertise_extra_routes(self) -> Optional[pulumi.Input[_builtins.bool]]:
82
82
  """
83
83
  A boolean flag indicating whether extra
84
84
  routes should be advertised. Defaults to true.
@@ -86,12 +86,12 @@ class BgpvpnRouterAssociateV2Args:
86
86
  return pulumi.get(self, "advertise_extra_routes")
87
87
 
88
88
  @advertise_extra_routes.setter
89
- def advertise_extra_routes(self, value: Optional[pulumi.Input[bool]]):
89
+ def advertise_extra_routes(self, value: Optional[pulumi.Input[_builtins.bool]]):
90
90
  pulumi.set(self, "advertise_extra_routes", value)
91
91
 
92
- @property
92
+ @_builtins.property
93
93
  @pulumi.getter(name="projectId")
94
- def project_id(self) -> Optional[pulumi.Input[str]]:
94
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
95
95
  """
96
96
  The ID of the project that owns the BGP VPN router
97
97
  association. Only administrative and users with `advsvc` role can specify a
@@ -101,12 +101,12 @@ class BgpvpnRouterAssociateV2Args:
101
101
  return pulumi.get(self, "project_id")
102
102
 
103
103
  @project_id.setter
104
- def project_id(self, value: Optional[pulumi.Input[str]]):
104
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
105
105
  pulumi.set(self, "project_id", value)
106
106
 
107
- @property
107
+ @_builtins.property
108
108
  @pulumi.getter
109
- def region(self) -> Optional[pulumi.Input[str]]:
109
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
110
110
  """
111
111
  The region in which to obtain the V2 Networking client.
112
112
  A Networking client is needed to create a BGP VPN router association. If
@@ -116,33 +116,33 @@ class BgpvpnRouterAssociateV2Args:
116
116
  return pulumi.get(self, "region")
117
117
 
118
118
  @region.setter
119
- def region(self, value: Optional[pulumi.Input[str]]):
119
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
120
120
  pulumi.set(self, "region", value)
121
121
 
122
122
 
123
123
  @pulumi.input_type
124
124
  class _BgpvpnRouterAssociateV2State:
125
125
  def __init__(__self__, *,
126
- advertise_extra_routes: Optional[pulumi.Input[bool]] = None,
127
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
128
- project_id: Optional[pulumi.Input[str]] = None,
129
- region: Optional[pulumi.Input[str]] = None,
130
- router_id: Optional[pulumi.Input[str]] = None):
126
+ advertise_extra_routes: Optional[pulumi.Input[_builtins.bool]] = None,
127
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
128
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
129
+ region: Optional[pulumi.Input[_builtins.str]] = None,
130
+ router_id: Optional[pulumi.Input[_builtins.str]] = None):
131
131
  """
132
132
  Input properties used for looking up and filtering BgpvpnRouterAssociateV2 resources.
133
- :param pulumi.Input[bool] advertise_extra_routes: A boolean flag indicating whether extra
133
+ :param pulumi.Input[_builtins.bool] advertise_extra_routes: A boolean flag indicating whether extra
134
134
  routes should be advertised. Defaults to true.
135
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the router will be
135
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the router will be
136
136
  associated. Changing this creates a new BGP VPN router association.
137
- :param pulumi.Input[str] project_id: The ID of the project that owns the BGP VPN router
137
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the BGP VPN router
138
138
  association. Only administrative and users with `advsvc` role can specify a
139
139
  project ID other than their own. Changing this creates a new BGP VPN router
140
140
  association.
141
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
141
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
142
142
  A Networking client is needed to create a BGP VPN router association. If
143
143
  omitted, the `region` argument of the provider is used. Changing this creates
144
144
  a new BGP VPN router association.
145
- :param pulumi.Input[str] router_id: The ID of the router to be associated with the BGP
145
+ :param pulumi.Input[_builtins.str] router_id: The ID of the router to be associated with the BGP
146
146
  VPN. Changing this creates a new BGP VPN router association.
147
147
  """
148
148
  if advertise_extra_routes is not None:
@@ -156,9 +156,9 @@ class _BgpvpnRouterAssociateV2State:
156
156
  if router_id is not None:
157
157
  pulumi.set(__self__, "router_id", router_id)
158
158
 
159
- @property
159
+ @_builtins.property
160
160
  @pulumi.getter(name="advertiseExtraRoutes")
161
- def advertise_extra_routes(self) -> Optional[pulumi.Input[bool]]:
161
+ def advertise_extra_routes(self) -> Optional[pulumi.Input[_builtins.bool]]:
162
162
  """
163
163
  A boolean flag indicating whether extra
164
164
  routes should be advertised. Defaults to true.
@@ -166,12 +166,12 @@ class _BgpvpnRouterAssociateV2State:
166
166
  return pulumi.get(self, "advertise_extra_routes")
167
167
 
168
168
  @advertise_extra_routes.setter
169
- def advertise_extra_routes(self, value: Optional[pulumi.Input[bool]]):
169
+ def advertise_extra_routes(self, value: Optional[pulumi.Input[_builtins.bool]]):
170
170
  pulumi.set(self, "advertise_extra_routes", value)
171
171
 
172
- @property
172
+ @_builtins.property
173
173
  @pulumi.getter(name="bgpvpnId")
174
- def bgpvpn_id(self) -> Optional[pulumi.Input[str]]:
174
+ def bgpvpn_id(self) -> Optional[pulumi.Input[_builtins.str]]:
175
175
  """
176
176
  The ID of the BGP VPN to which the router will be
177
177
  associated. Changing this creates a new BGP VPN router association.
@@ -179,12 +179,12 @@ class _BgpvpnRouterAssociateV2State:
179
179
  return pulumi.get(self, "bgpvpn_id")
180
180
 
181
181
  @bgpvpn_id.setter
182
- def bgpvpn_id(self, value: Optional[pulumi.Input[str]]):
182
+ def bgpvpn_id(self, value: Optional[pulumi.Input[_builtins.str]]):
183
183
  pulumi.set(self, "bgpvpn_id", value)
184
184
 
185
- @property
185
+ @_builtins.property
186
186
  @pulumi.getter(name="projectId")
187
- def project_id(self) -> Optional[pulumi.Input[str]]:
187
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
188
188
  """
189
189
  The ID of the project that owns the BGP VPN router
190
190
  association. Only administrative and users with `advsvc` role can specify a
@@ -194,12 +194,12 @@ class _BgpvpnRouterAssociateV2State:
194
194
  return pulumi.get(self, "project_id")
195
195
 
196
196
  @project_id.setter
197
- def project_id(self, value: Optional[pulumi.Input[str]]):
197
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
198
198
  pulumi.set(self, "project_id", value)
199
199
 
200
- @property
200
+ @_builtins.property
201
201
  @pulumi.getter
202
- def region(self) -> Optional[pulumi.Input[str]]:
202
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
203
203
  """
204
204
  The region in which to obtain the V2 Networking client.
205
205
  A Networking client is needed to create a BGP VPN router association. If
@@ -209,12 +209,12 @@ class _BgpvpnRouterAssociateV2State:
209
209
  return pulumi.get(self, "region")
210
210
 
211
211
  @region.setter
212
- def region(self, value: Optional[pulumi.Input[str]]):
212
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
213
213
  pulumi.set(self, "region", value)
214
214
 
215
- @property
215
+ @_builtins.property
216
216
  @pulumi.getter(name="routerId")
217
- def router_id(self) -> Optional[pulumi.Input[str]]:
217
+ def router_id(self) -> Optional[pulumi.Input[_builtins.str]]:
218
218
  """
219
219
  The ID of the router to be associated with the BGP
220
220
  VPN. Changing this creates a new BGP VPN router association.
@@ -222,20 +222,26 @@ class _BgpvpnRouterAssociateV2State:
222
222
  return pulumi.get(self, "router_id")
223
223
 
224
224
  @router_id.setter
225
- def router_id(self, value: Optional[pulumi.Input[str]]):
225
+ def router_id(self, value: Optional[pulumi.Input[_builtins.str]]):
226
226
  pulumi.set(self, "router_id", value)
227
227
 
228
228
 
229
+ warnings.warn("""openstack.index/bgpvpnrouterassociatev2.BgpvpnRouterAssociateV2 has been deprecated in favor of openstack.bgpvpn/routerassociatev2.RouterAssociateV2""", DeprecationWarning)
230
+
231
+
232
+ @pulumi.type_token("openstack:index/bgpvpnRouterAssociateV2:BgpvpnRouterAssociateV2")
229
233
  class BgpvpnRouterAssociateV2(pulumi.CustomResource):
234
+ warnings.warn("""openstack.index/bgpvpnrouterassociatev2.BgpvpnRouterAssociateV2 has been deprecated in favor of openstack.bgpvpn/routerassociatev2.RouterAssociateV2""", DeprecationWarning)
235
+
230
236
  @overload
231
237
  def __init__(__self__,
232
238
  resource_name: str,
233
239
  opts: Optional[pulumi.ResourceOptions] = None,
234
- advertise_extra_routes: Optional[pulumi.Input[bool]] = None,
235
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
236
- project_id: Optional[pulumi.Input[str]] = None,
237
- region: Optional[pulumi.Input[str]] = None,
238
- router_id: Optional[pulumi.Input[str]] = None,
240
+ advertise_extra_routes: Optional[pulumi.Input[_builtins.bool]] = None,
241
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
242
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
243
+ region: Optional[pulumi.Input[_builtins.str]] = None,
244
+ router_id: Optional[pulumi.Input[_builtins.str]] = None,
239
245
  __props__=None):
240
246
  """
241
247
  Manages a V2 BGP VPN router association resource within OpenStack.
@@ -246,7 +252,7 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
246
252
  import pulumi
247
253
  import pulumi_openstack as openstack
248
254
 
249
- association1 = openstack.BgpvpnRouterAssociateV2("association_1",
255
+ association1 = openstack.bgpvpn.RouterAssociateV2("association_1",
250
256
  bgpvpn_id="d57d39e1-dc63-44fd-8cbd-a4e1488100c5",
251
257
  router_id="423fa80f-e0d7-4d02-a9a5-8b8c05812bf6")
252
258
  ```
@@ -265,19 +271,19 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
265
271
 
266
272
  :param str resource_name: The name of the resource.
267
273
  :param pulumi.ResourceOptions opts: Options for the resource.
268
- :param pulumi.Input[bool] advertise_extra_routes: A boolean flag indicating whether extra
274
+ :param pulumi.Input[_builtins.bool] advertise_extra_routes: A boolean flag indicating whether extra
269
275
  routes should be advertised. Defaults to true.
270
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the router will be
276
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the router will be
271
277
  associated. Changing this creates a new BGP VPN router association.
272
- :param pulumi.Input[str] project_id: The ID of the project that owns the BGP VPN router
278
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the BGP VPN router
273
279
  association. Only administrative and users with `advsvc` role can specify a
274
280
  project ID other than their own. Changing this creates a new BGP VPN router
275
281
  association.
276
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
282
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
277
283
  A Networking client is needed to create a BGP VPN router association. If
278
284
  omitted, the `region` argument of the provider is used. Changing this creates
279
285
  a new BGP VPN router association.
280
- :param pulumi.Input[str] router_id: The ID of the router to be associated with the BGP
286
+ :param pulumi.Input[_builtins.str] router_id: The ID of the router to be associated with the BGP
281
287
  VPN. Changing this creates a new BGP VPN router association.
282
288
  """
283
289
  ...
@@ -295,7 +301,7 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
295
301
  import pulumi
296
302
  import pulumi_openstack as openstack
297
303
 
298
- association1 = openstack.BgpvpnRouterAssociateV2("association_1",
304
+ association1 = openstack.bgpvpn.RouterAssociateV2("association_1",
299
305
  bgpvpn_id="d57d39e1-dc63-44fd-8cbd-a4e1488100c5",
300
306
  router_id="423fa80f-e0d7-4d02-a9a5-8b8c05812bf6")
301
307
  ```
@@ -327,12 +333,13 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
327
333
  def _internal_init(__self__,
328
334
  resource_name: str,
329
335
  opts: Optional[pulumi.ResourceOptions] = None,
330
- advertise_extra_routes: Optional[pulumi.Input[bool]] = None,
331
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
332
- project_id: Optional[pulumi.Input[str]] = None,
333
- region: Optional[pulumi.Input[str]] = None,
334
- router_id: Optional[pulumi.Input[str]] = None,
336
+ advertise_extra_routes: Optional[pulumi.Input[_builtins.bool]] = None,
337
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
338
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
339
+ region: Optional[pulumi.Input[_builtins.str]] = None,
340
+ router_id: Optional[pulumi.Input[_builtins.str]] = None,
335
341
  __props__=None):
342
+ pulumi.log.warn("""BgpvpnRouterAssociateV2 is deprecated: openstack.index/bgpvpnrouterassociatev2.BgpvpnRouterAssociateV2 has been deprecated in favor of openstack.bgpvpn/routerassociatev2.RouterAssociateV2""")
336
343
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
337
344
  if not isinstance(opts, pulumi.ResourceOptions):
338
345
  raise TypeError('Expected resource options to be a ResourceOptions instance')
@@ -360,11 +367,11 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
360
367
  def get(resource_name: str,
361
368
  id: pulumi.Input[str],
362
369
  opts: Optional[pulumi.ResourceOptions] = None,
363
- advertise_extra_routes: Optional[pulumi.Input[bool]] = None,
364
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
365
- project_id: Optional[pulumi.Input[str]] = None,
366
- region: Optional[pulumi.Input[str]] = None,
367
- router_id: Optional[pulumi.Input[str]] = None) -> 'BgpvpnRouterAssociateV2':
370
+ advertise_extra_routes: Optional[pulumi.Input[_builtins.bool]] = None,
371
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
372
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
373
+ region: Optional[pulumi.Input[_builtins.str]] = None,
374
+ router_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'BgpvpnRouterAssociateV2':
368
375
  """
369
376
  Get an existing BgpvpnRouterAssociateV2 resource's state with the given name, id, and optional extra
370
377
  properties used to qualify the lookup.
@@ -372,19 +379,19 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
372
379
  :param str resource_name: The unique name of the resulting resource.
373
380
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
374
381
  :param pulumi.ResourceOptions opts: Options for the resource.
375
- :param pulumi.Input[bool] advertise_extra_routes: A boolean flag indicating whether extra
382
+ :param pulumi.Input[_builtins.bool] advertise_extra_routes: A boolean flag indicating whether extra
376
383
  routes should be advertised. Defaults to true.
377
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the router will be
384
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the router will be
378
385
  associated. Changing this creates a new BGP VPN router association.
379
- :param pulumi.Input[str] project_id: The ID of the project that owns the BGP VPN router
386
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the BGP VPN router
380
387
  association. Only administrative and users with `advsvc` role can specify a
381
388
  project ID other than their own. Changing this creates a new BGP VPN router
382
389
  association.
383
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
390
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
384
391
  A Networking client is needed to create a BGP VPN router association. If
385
392
  omitted, the `region` argument of the provider is used. Changing this creates
386
393
  a new BGP VPN router association.
387
- :param pulumi.Input[str] router_id: The ID of the router to be associated with the BGP
394
+ :param pulumi.Input[_builtins.str] router_id: The ID of the router to be associated with the BGP
388
395
  VPN. Changing this creates a new BGP VPN router association.
389
396
  """
390
397
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -398,27 +405,27 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
398
405
  __props__.__dict__["router_id"] = router_id
399
406
  return BgpvpnRouterAssociateV2(resource_name, opts=opts, __props__=__props__)
400
407
 
401
- @property
408
+ @_builtins.property
402
409
  @pulumi.getter(name="advertiseExtraRoutes")
403
- def advertise_extra_routes(self) -> pulumi.Output[bool]:
410
+ def advertise_extra_routes(self) -> pulumi.Output[_builtins.bool]:
404
411
  """
405
412
  A boolean flag indicating whether extra
406
413
  routes should be advertised. Defaults to true.
407
414
  """
408
415
  return pulumi.get(self, "advertise_extra_routes")
409
416
 
410
- @property
417
+ @_builtins.property
411
418
  @pulumi.getter(name="bgpvpnId")
412
- def bgpvpn_id(self) -> pulumi.Output[str]:
419
+ def bgpvpn_id(self) -> pulumi.Output[_builtins.str]:
413
420
  """
414
421
  The ID of the BGP VPN to which the router will be
415
422
  associated. Changing this creates a new BGP VPN router association.
416
423
  """
417
424
  return pulumi.get(self, "bgpvpn_id")
418
425
 
419
- @property
426
+ @_builtins.property
420
427
  @pulumi.getter(name="projectId")
421
- def project_id(self) -> pulumi.Output[str]:
428
+ def project_id(self) -> pulumi.Output[_builtins.str]:
422
429
  """
423
430
  The ID of the project that owns the BGP VPN router
424
431
  association. Only administrative and users with `advsvc` role can specify a
@@ -427,9 +434,9 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
427
434
  """
428
435
  return pulumi.get(self, "project_id")
429
436
 
430
- @property
437
+ @_builtins.property
431
438
  @pulumi.getter
432
- def region(self) -> pulumi.Output[str]:
439
+ def region(self) -> pulumi.Output[_builtins.str]:
433
440
  """
434
441
  The region in which to obtain the V2 Networking client.
435
442
  A Networking client is needed to create a BGP VPN router association. If
@@ -438,9 +445,9 @@ class BgpvpnRouterAssociateV2(pulumi.CustomResource):
438
445
  """
439
446
  return pulumi.get(self, "region")
440
447
 
441
- @property
448
+ @_builtins.property
442
449
  @pulumi.getter(name="routerId")
443
- def router_id(self) -> pulumi.Output[str]:
450
+ def router_id(self) -> pulumi.Output[_builtins.str]:
444
451
  """
445
452
  The ID of the router to be associated with the BGP
446
453
  VPN. Changing this creates a new BGP VPN router association.