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
@@ -21,25 +21,25 @@ __all__ = ['BgpvpnPortAssociateV2Args', 'BgpvpnPortAssociateV2']
21
21
  @pulumi.input_type
22
22
  class BgpvpnPortAssociateV2Args:
23
23
  def __init__(__self__, *,
24
- bgpvpn_id: pulumi.Input[str],
25
- port_id: pulumi.Input[str],
26
- advertise_fixed_ips: Optional[pulumi.Input[bool]] = None,
27
- project_id: Optional[pulumi.Input[str]] = None,
28
- region: Optional[pulumi.Input[str]] = None,
24
+ bgpvpn_id: pulumi.Input[_builtins.str],
25
+ port_id: pulumi.Input[_builtins.str],
26
+ advertise_fixed_ips: Optional[pulumi.Input[_builtins.bool]] = None,
27
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
28
+ region: Optional[pulumi.Input[_builtins.str]] = None,
29
29
  routes: Optional[pulumi.Input[Sequence[pulumi.Input['BgpvpnPortAssociateV2RouteArgs']]]] = None):
30
30
  """
31
31
  The set of arguments for constructing a BgpvpnPortAssociateV2 resource.
32
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the port will be
32
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the port will be
33
33
  associated. Changing this creates a new BGP VPN port association.
34
- :param pulumi.Input[str] port_id: The ID of the port to be associated with the BGP VPN.
34
+ :param pulumi.Input[_builtins.str] port_id: The ID of the port to be associated with the BGP VPN.
35
35
  Changing this creates a new BGP VPN port association.
36
- :param pulumi.Input[bool] advertise_fixed_ips: A boolean flag indicating whether fixed
36
+ :param pulumi.Input[_builtins.bool] advertise_fixed_ips: A boolean flag indicating whether fixed
37
37
  IPs should be advertised. Defaults to true.
38
- :param pulumi.Input[str] project_id: The ID of the project that owns the port
38
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the port
39
39
  association. Only administrative and users with `advsvc` role can specify a
40
40
  project ID other than their own. Changing this creates a new BGP VPN port
41
41
  association.
42
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
42
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
43
43
  A Networking client is needed to create a BGP VPN port association. If
44
44
  omitted, the `region` argument of the provider is used. Changing this creates
45
45
  a new BGP VPN port association.
@@ -56,9 +56,9 @@ class BgpvpnPortAssociateV2Args:
56
56
  if routes is not None:
57
57
  pulumi.set(__self__, "routes", routes)
58
58
 
59
- @property
59
+ @_builtins.property
60
60
  @pulumi.getter(name="bgpvpnId")
61
- def bgpvpn_id(self) -> pulumi.Input[str]:
61
+ def bgpvpn_id(self) -> pulumi.Input[_builtins.str]:
62
62
  """
63
63
  The ID of the BGP VPN to which the port will be
64
64
  associated. Changing this creates a new BGP VPN port association.
@@ -66,12 +66,12 @@ class BgpvpnPortAssociateV2Args:
66
66
  return pulumi.get(self, "bgpvpn_id")
67
67
 
68
68
  @bgpvpn_id.setter
69
- def bgpvpn_id(self, value: pulumi.Input[str]):
69
+ def bgpvpn_id(self, value: pulumi.Input[_builtins.str]):
70
70
  pulumi.set(self, "bgpvpn_id", value)
71
71
 
72
- @property
72
+ @_builtins.property
73
73
  @pulumi.getter(name="portId")
74
- def port_id(self) -> pulumi.Input[str]:
74
+ def port_id(self) -> pulumi.Input[_builtins.str]:
75
75
  """
76
76
  The ID of the port to be associated with the BGP VPN.
77
77
  Changing this creates a new BGP VPN port association.
@@ -79,12 +79,12 @@ class BgpvpnPortAssociateV2Args:
79
79
  return pulumi.get(self, "port_id")
80
80
 
81
81
  @port_id.setter
82
- def port_id(self, value: pulumi.Input[str]):
82
+ def port_id(self, value: pulumi.Input[_builtins.str]):
83
83
  pulumi.set(self, "port_id", value)
84
84
 
85
- @property
85
+ @_builtins.property
86
86
  @pulumi.getter(name="advertiseFixedIps")
87
- def advertise_fixed_ips(self) -> Optional[pulumi.Input[bool]]:
87
+ def advertise_fixed_ips(self) -> Optional[pulumi.Input[_builtins.bool]]:
88
88
  """
89
89
  A boolean flag indicating whether fixed
90
90
  IPs should be advertised. Defaults to true.
@@ -92,12 +92,12 @@ class BgpvpnPortAssociateV2Args:
92
92
  return pulumi.get(self, "advertise_fixed_ips")
93
93
 
94
94
  @advertise_fixed_ips.setter
95
- def advertise_fixed_ips(self, value: Optional[pulumi.Input[bool]]):
95
+ def advertise_fixed_ips(self, value: Optional[pulumi.Input[_builtins.bool]]):
96
96
  pulumi.set(self, "advertise_fixed_ips", value)
97
97
 
98
- @property
98
+ @_builtins.property
99
99
  @pulumi.getter(name="projectId")
100
- def project_id(self) -> Optional[pulumi.Input[str]]:
100
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
101
101
  """
102
102
  The ID of the project that owns the port
103
103
  association. Only administrative and users with `advsvc` role can specify a
@@ -107,12 +107,12 @@ class BgpvpnPortAssociateV2Args:
107
107
  return pulumi.get(self, "project_id")
108
108
 
109
109
  @project_id.setter
110
- def project_id(self, value: Optional[pulumi.Input[str]]):
110
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
111
111
  pulumi.set(self, "project_id", value)
112
112
 
113
- @property
113
+ @_builtins.property
114
114
  @pulumi.getter
115
- def region(self) -> Optional[pulumi.Input[str]]:
115
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
116
116
  """
117
117
  The region in which to obtain the V2 Networking client.
118
118
  A Networking client is needed to create a BGP VPN port association. If
@@ -122,10 +122,10 @@ class BgpvpnPortAssociateV2Args:
122
122
  return pulumi.get(self, "region")
123
123
 
124
124
  @region.setter
125
- def region(self, value: Optional[pulumi.Input[str]]):
125
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
126
126
  pulumi.set(self, "region", value)
127
127
 
128
- @property
128
+ @_builtins.property
129
129
  @pulumi.getter
130
130
  def routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BgpvpnPortAssociateV2RouteArgs']]]]:
131
131
  """
@@ -141,25 +141,25 @@ class BgpvpnPortAssociateV2Args:
141
141
  @pulumi.input_type
142
142
  class _BgpvpnPortAssociateV2State:
143
143
  def __init__(__self__, *,
144
- advertise_fixed_ips: Optional[pulumi.Input[bool]] = None,
145
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
146
- port_id: Optional[pulumi.Input[str]] = None,
147
- project_id: Optional[pulumi.Input[str]] = None,
148
- region: Optional[pulumi.Input[str]] = None,
144
+ advertise_fixed_ips: Optional[pulumi.Input[_builtins.bool]] = None,
145
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
146
+ port_id: Optional[pulumi.Input[_builtins.str]] = None,
147
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
148
+ region: Optional[pulumi.Input[_builtins.str]] = None,
149
149
  routes: Optional[pulumi.Input[Sequence[pulumi.Input['BgpvpnPortAssociateV2RouteArgs']]]] = None):
150
150
  """
151
151
  Input properties used for looking up and filtering BgpvpnPortAssociateV2 resources.
152
- :param pulumi.Input[bool] advertise_fixed_ips: A boolean flag indicating whether fixed
152
+ :param pulumi.Input[_builtins.bool] advertise_fixed_ips: A boolean flag indicating whether fixed
153
153
  IPs should be advertised. Defaults to true.
154
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the port will be
154
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the port will be
155
155
  associated. Changing this creates a new BGP VPN port association.
156
- :param pulumi.Input[str] port_id: The ID of the port to be associated with the BGP VPN.
156
+ :param pulumi.Input[_builtins.str] port_id: The ID of the port to be associated with the BGP VPN.
157
157
  Changing this creates a new BGP VPN port association.
158
- :param pulumi.Input[str] project_id: The ID of the project that owns the port
158
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the port
159
159
  association. Only administrative and users with `advsvc` role can specify a
160
160
  project ID other than their own. Changing this creates a new BGP VPN port
161
161
  association.
162
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
162
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
163
163
  A Networking client is needed to create a BGP VPN port association. If
164
164
  omitted, the `region` argument of the provider is used. Changing this creates
165
165
  a new BGP VPN port association.
@@ -178,9 +178,9 @@ class _BgpvpnPortAssociateV2State:
178
178
  if routes is not None:
179
179
  pulumi.set(__self__, "routes", routes)
180
180
 
181
- @property
181
+ @_builtins.property
182
182
  @pulumi.getter(name="advertiseFixedIps")
183
- def advertise_fixed_ips(self) -> Optional[pulumi.Input[bool]]:
183
+ def advertise_fixed_ips(self) -> Optional[pulumi.Input[_builtins.bool]]:
184
184
  """
185
185
  A boolean flag indicating whether fixed
186
186
  IPs should be advertised. Defaults to true.
@@ -188,12 +188,12 @@ class _BgpvpnPortAssociateV2State:
188
188
  return pulumi.get(self, "advertise_fixed_ips")
189
189
 
190
190
  @advertise_fixed_ips.setter
191
- def advertise_fixed_ips(self, value: Optional[pulumi.Input[bool]]):
191
+ def advertise_fixed_ips(self, value: Optional[pulumi.Input[_builtins.bool]]):
192
192
  pulumi.set(self, "advertise_fixed_ips", value)
193
193
 
194
- @property
194
+ @_builtins.property
195
195
  @pulumi.getter(name="bgpvpnId")
196
- def bgpvpn_id(self) -> Optional[pulumi.Input[str]]:
196
+ def bgpvpn_id(self) -> Optional[pulumi.Input[_builtins.str]]:
197
197
  """
198
198
  The ID of the BGP VPN to which the port will be
199
199
  associated. Changing this creates a new BGP VPN port association.
@@ -201,12 +201,12 @@ class _BgpvpnPortAssociateV2State:
201
201
  return pulumi.get(self, "bgpvpn_id")
202
202
 
203
203
  @bgpvpn_id.setter
204
- def bgpvpn_id(self, value: Optional[pulumi.Input[str]]):
204
+ def bgpvpn_id(self, value: Optional[pulumi.Input[_builtins.str]]):
205
205
  pulumi.set(self, "bgpvpn_id", value)
206
206
 
207
- @property
207
+ @_builtins.property
208
208
  @pulumi.getter(name="portId")
209
- def port_id(self) -> Optional[pulumi.Input[str]]:
209
+ def port_id(self) -> Optional[pulumi.Input[_builtins.str]]:
210
210
  """
211
211
  The ID of the port to be associated with the BGP VPN.
212
212
  Changing this creates a new BGP VPN port association.
@@ -214,12 +214,12 @@ class _BgpvpnPortAssociateV2State:
214
214
  return pulumi.get(self, "port_id")
215
215
 
216
216
  @port_id.setter
217
- def port_id(self, value: Optional[pulumi.Input[str]]):
217
+ def port_id(self, value: Optional[pulumi.Input[_builtins.str]]):
218
218
  pulumi.set(self, "port_id", value)
219
219
 
220
- @property
220
+ @_builtins.property
221
221
  @pulumi.getter(name="projectId")
222
- def project_id(self) -> Optional[pulumi.Input[str]]:
222
+ def project_id(self) -> Optional[pulumi.Input[_builtins.str]]:
223
223
  """
224
224
  The ID of the project that owns the port
225
225
  association. Only administrative and users with `advsvc` role can specify a
@@ -229,12 +229,12 @@ class _BgpvpnPortAssociateV2State:
229
229
  return pulumi.get(self, "project_id")
230
230
 
231
231
  @project_id.setter
232
- def project_id(self, value: Optional[pulumi.Input[str]]):
232
+ def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
233
233
  pulumi.set(self, "project_id", value)
234
234
 
235
- @property
235
+ @_builtins.property
236
236
  @pulumi.getter
237
- def region(self) -> Optional[pulumi.Input[str]]:
237
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
238
238
  """
239
239
  The region in which to obtain the V2 Networking client.
240
240
  A Networking client is needed to create a BGP VPN port association. If
@@ -244,10 +244,10 @@ class _BgpvpnPortAssociateV2State:
244
244
  return pulumi.get(self, "region")
245
245
 
246
246
  @region.setter
247
- def region(self, value: Optional[pulumi.Input[str]]):
247
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
248
248
  pulumi.set(self, "region", value)
249
249
 
250
- @property
250
+ @_builtins.property
251
251
  @pulumi.getter
252
252
  def routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BgpvpnPortAssociateV2RouteArgs']]]]:
253
253
  """
@@ -260,16 +260,22 @@ class _BgpvpnPortAssociateV2State:
260
260
  pulumi.set(self, "routes", value)
261
261
 
262
262
 
263
+ warnings.warn("""openstack.index/bgpvpnportassociatev2.BgpvpnPortAssociateV2 has been deprecated in favor of openstack.bgpvpn/portassociatev2.PortAssociateV2""", DeprecationWarning)
264
+
265
+
266
+ @pulumi.type_token("openstack:index/bgpvpnPortAssociateV2:BgpvpnPortAssociateV2")
263
267
  class BgpvpnPortAssociateV2(pulumi.CustomResource):
268
+ warnings.warn("""openstack.index/bgpvpnportassociatev2.BgpvpnPortAssociateV2 has been deprecated in favor of openstack.bgpvpn/portassociatev2.PortAssociateV2""", DeprecationWarning)
269
+
264
270
  @overload
265
271
  def __init__(__self__,
266
272
  resource_name: str,
267
273
  opts: Optional[pulumi.ResourceOptions] = None,
268
- advertise_fixed_ips: Optional[pulumi.Input[bool]] = None,
269
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
270
- port_id: Optional[pulumi.Input[str]] = None,
271
- project_id: Optional[pulumi.Input[str]] = None,
272
- region: Optional[pulumi.Input[str]] = None,
274
+ advertise_fixed_ips: Optional[pulumi.Input[_builtins.bool]] = None,
275
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
276
+ port_id: Optional[pulumi.Input[_builtins.str]] = None,
277
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
278
+ region: Optional[pulumi.Input[_builtins.str]] = None,
273
279
  routes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BgpvpnPortAssociateV2RouteArgs', 'BgpvpnPortAssociateV2RouteArgsDict']]]]] = None,
274
280
  __props__=None):
275
281
  """
@@ -281,7 +287,7 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
281
287
  import pulumi
282
288
  import pulumi_openstack as openstack
283
289
 
284
- association1 = openstack.BgpvpnPortAssociateV2("association_1",
290
+ association1 = openstack.bgpvpn.PortAssociateV2("association_1",
285
291
  bgpvpn_id="19382ec5-8098-47d9-a9c6-6270c91103f4",
286
292
  port_id="b83a95b8-c2c8-4eac-9a9e-ddc85bd1266f",
287
293
  routes=[
@@ -310,17 +316,17 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
310
316
 
311
317
  :param str resource_name: The name of the resource.
312
318
  :param pulumi.ResourceOptions opts: Options for the resource.
313
- :param pulumi.Input[bool] advertise_fixed_ips: A boolean flag indicating whether fixed
319
+ :param pulumi.Input[_builtins.bool] advertise_fixed_ips: A boolean flag indicating whether fixed
314
320
  IPs should be advertised. Defaults to true.
315
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the port will be
321
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the port will be
316
322
  associated. Changing this creates a new BGP VPN port association.
317
- :param pulumi.Input[str] port_id: The ID of the port to be associated with the BGP VPN.
323
+ :param pulumi.Input[_builtins.str] port_id: The ID of the port to be associated with the BGP VPN.
318
324
  Changing this creates a new BGP VPN port association.
319
- :param pulumi.Input[str] project_id: The ID of the project that owns the port
325
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the port
320
326
  association. Only administrative and users with `advsvc` role can specify a
321
327
  project ID other than their own. Changing this creates a new BGP VPN port
322
328
  association.
323
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
329
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
324
330
  A Networking client is needed to create a BGP VPN port association. If
325
331
  omitted, the `region` argument of the provider is used. Changing this creates
326
332
  a new BGP VPN port association.
@@ -341,7 +347,7 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
341
347
  import pulumi
342
348
  import pulumi_openstack as openstack
343
349
 
344
- association1 = openstack.BgpvpnPortAssociateV2("association_1",
350
+ association1 = openstack.bgpvpn.PortAssociateV2("association_1",
345
351
  bgpvpn_id="19382ec5-8098-47d9-a9c6-6270c91103f4",
346
352
  port_id="b83a95b8-c2c8-4eac-9a9e-ddc85bd1266f",
347
353
  routes=[
@@ -383,13 +389,14 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
383
389
  def _internal_init(__self__,
384
390
  resource_name: str,
385
391
  opts: Optional[pulumi.ResourceOptions] = None,
386
- advertise_fixed_ips: Optional[pulumi.Input[bool]] = None,
387
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
388
- port_id: Optional[pulumi.Input[str]] = None,
389
- project_id: Optional[pulumi.Input[str]] = None,
390
- region: Optional[pulumi.Input[str]] = None,
392
+ advertise_fixed_ips: Optional[pulumi.Input[_builtins.bool]] = None,
393
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
394
+ port_id: Optional[pulumi.Input[_builtins.str]] = None,
395
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
396
+ region: Optional[pulumi.Input[_builtins.str]] = None,
391
397
  routes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BgpvpnPortAssociateV2RouteArgs', 'BgpvpnPortAssociateV2RouteArgsDict']]]]] = None,
392
398
  __props__=None):
399
+ pulumi.log.warn("""BgpvpnPortAssociateV2 is deprecated: openstack.index/bgpvpnportassociatev2.BgpvpnPortAssociateV2 has been deprecated in favor of openstack.bgpvpn/portassociatev2.PortAssociateV2""")
393
400
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
394
401
  if not isinstance(opts, pulumi.ResourceOptions):
395
402
  raise TypeError('Expected resource options to be a ResourceOptions instance')
@@ -418,11 +425,11 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
418
425
  def get(resource_name: str,
419
426
  id: pulumi.Input[str],
420
427
  opts: Optional[pulumi.ResourceOptions] = None,
421
- advertise_fixed_ips: Optional[pulumi.Input[bool]] = None,
422
- bgpvpn_id: Optional[pulumi.Input[str]] = None,
423
- port_id: Optional[pulumi.Input[str]] = None,
424
- project_id: Optional[pulumi.Input[str]] = None,
425
- region: Optional[pulumi.Input[str]] = None,
428
+ advertise_fixed_ips: Optional[pulumi.Input[_builtins.bool]] = None,
429
+ bgpvpn_id: Optional[pulumi.Input[_builtins.str]] = None,
430
+ port_id: Optional[pulumi.Input[_builtins.str]] = None,
431
+ project_id: Optional[pulumi.Input[_builtins.str]] = None,
432
+ region: Optional[pulumi.Input[_builtins.str]] = None,
426
433
  routes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BgpvpnPortAssociateV2RouteArgs', 'BgpvpnPortAssociateV2RouteArgsDict']]]]] = None) -> 'BgpvpnPortAssociateV2':
427
434
  """
428
435
  Get an existing BgpvpnPortAssociateV2 resource's state with the given name, id, and optional extra
@@ -431,17 +438,17 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
431
438
  :param str resource_name: The unique name of the resulting resource.
432
439
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
433
440
  :param pulumi.ResourceOptions opts: Options for the resource.
434
- :param pulumi.Input[bool] advertise_fixed_ips: A boolean flag indicating whether fixed
441
+ :param pulumi.Input[_builtins.bool] advertise_fixed_ips: A boolean flag indicating whether fixed
435
442
  IPs should be advertised. Defaults to true.
436
- :param pulumi.Input[str] bgpvpn_id: The ID of the BGP VPN to which the port will be
443
+ :param pulumi.Input[_builtins.str] bgpvpn_id: The ID of the BGP VPN to which the port will be
437
444
  associated. Changing this creates a new BGP VPN port association.
438
- :param pulumi.Input[str] port_id: The ID of the port to be associated with the BGP VPN.
445
+ :param pulumi.Input[_builtins.str] port_id: The ID of the port to be associated with the BGP VPN.
439
446
  Changing this creates a new BGP VPN port association.
440
- :param pulumi.Input[str] project_id: The ID of the project that owns the port
447
+ :param pulumi.Input[_builtins.str] project_id: The ID of the project that owns the port
441
448
  association. Only administrative and users with `advsvc` role can specify a
442
449
  project ID other than their own. Changing this creates a new BGP VPN port
443
450
  association.
444
- :param pulumi.Input[str] region: The region in which to obtain the V2 Networking client.
451
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Networking client.
445
452
  A Networking client is needed to create a BGP VPN port association. If
446
453
  omitted, the `region` argument of the provider is used. Changing this creates
447
454
  a new BGP VPN port association.
@@ -459,36 +466,36 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
459
466
  __props__.__dict__["routes"] = routes
460
467
  return BgpvpnPortAssociateV2(resource_name, opts=opts, __props__=__props__)
461
468
 
462
- @property
469
+ @_builtins.property
463
470
  @pulumi.getter(name="advertiseFixedIps")
464
- def advertise_fixed_ips(self) -> pulumi.Output[bool]:
471
+ def advertise_fixed_ips(self) -> pulumi.Output[_builtins.bool]:
465
472
  """
466
473
  A boolean flag indicating whether fixed
467
474
  IPs should be advertised. Defaults to true.
468
475
  """
469
476
  return pulumi.get(self, "advertise_fixed_ips")
470
477
 
471
- @property
478
+ @_builtins.property
472
479
  @pulumi.getter(name="bgpvpnId")
473
- def bgpvpn_id(self) -> pulumi.Output[str]:
480
+ def bgpvpn_id(self) -> pulumi.Output[_builtins.str]:
474
481
  """
475
482
  The ID of the BGP VPN to which the port will be
476
483
  associated. Changing this creates a new BGP VPN port association.
477
484
  """
478
485
  return pulumi.get(self, "bgpvpn_id")
479
486
 
480
- @property
487
+ @_builtins.property
481
488
  @pulumi.getter(name="portId")
482
- def port_id(self) -> pulumi.Output[str]:
489
+ def port_id(self) -> pulumi.Output[_builtins.str]:
483
490
  """
484
491
  The ID of the port to be associated with the BGP VPN.
485
492
  Changing this creates a new BGP VPN port association.
486
493
  """
487
494
  return pulumi.get(self, "port_id")
488
495
 
489
- @property
496
+ @_builtins.property
490
497
  @pulumi.getter(name="projectId")
491
- def project_id(self) -> pulumi.Output[str]:
498
+ def project_id(self) -> pulumi.Output[_builtins.str]:
492
499
  """
493
500
  The ID of the project that owns the port
494
501
  association. Only administrative and users with `advsvc` role can specify a
@@ -497,9 +504,9 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
497
504
  """
498
505
  return pulumi.get(self, "project_id")
499
506
 
500
- @property
507
+ @_builtins.property
501
508
  @pulumi.getter
502
- def region(self) -> pulumi.Output[str]:
509
+ def region(self) -> pulumi.Output[_builtins.str]:
503
510
  """
504
511
  The region in which to obtain the V2 Networking client.
505
512
  A Networking client is needed to create a BGP VPN port association. If
@@ -508,7 +515,7 @@ class BgpvpnPortAssociateV2(pulumi.CustomResource):
508
515
  """
509
516
  return pulumi.get(self, "region")
510
517
 
511
- @property
518
+ @_builtins.property
512
519
  @pulumi.getter
513
520
  def routes(self) -> pulumi.Output[Optional[Sequence['outputs.BgpvpnPortAssociateV2Route']]]:
514
521
  """