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
@@ -27,7 +27,7 @@ class GetRouterResult:
27
27
  """
28
28
  A collection of values returned by getRouter.
29
29
  """
30
- def __init__(__self__, admin_state_up=None, all_tags=None, availability_zone_hints=None, description=None, distributed=None, enable_snat=None, external_fixed_ips=None, external_network_id=None, id=None, name=None, region=None, router_id=None, status=None, tags=None, tenant_id=None):
30
+ def __init__(__self__, admin_state_up=None, all_tags=None, availability_zone_hints=None, description=None, distributed=None, enable_snat=None, external_fixed_ips=None, external_network_id=None, external_qos_policy_id=None, id=None, name=None, region=None, router_id=None, routes=None, status=None, tags=None, tenant_id=None):
31
31
  if admin_state_up and not isinstance(admin_state_up, bool):
32
32
  raise TypeError("Expected argument 'admin_state_up' to be a bool")
33
33
  pulumi.set(__self__, "admin_state_up", admin_state_up)
@@ -52,6 +52,9 @@ class GetRouterResult:
52
52
  if external_network_id and not isinstance(external_network_id, str):
53
53
  raise TypeError("Expected argument 'external_network_id' to be a str")
54
54
  pulumi.set(__self__, "external_network_id", external_network_id)
55
+ if external_qos_policy_id and not isinstance(external_qos_policy_id, str):
56
+ raise TypeError("Expected argument 'external_qos_policy_id' to be a str")
57
+ pulumi.set(__self__, "external_qos_policy_id", external_qos_policy_id)
55
58
  if id and not isinstance(id, str):
56
59
  raise TypeError("Expected argument 'id' to be a str")
57
60
  pulumi.set(__self__, "id", id)
@@ -64,6 +67,9 @@ class GetRouterResult:
64
67
  if router_id and not isinstance(router_id, str):
65
68
  raise TypeError("Expected argument 'router_id' to be a str")
66
69
  pulumi.set(__self__, "router_id", router_id)
70
+ if routes and not isinstance(routes, list):
71
+ raise TypeError("Expected argument 'routes' to be a list")
72
+ pulumi.set(__self__, "routes", routes)
67
73
  if status and not isinstance(status, str):
68
74
  raise TypeError("Expected argument 'status' to be a str")
69
75
  pulumi.set(__self__, "status", status)
@@ -74,46 +80,46 @@ class GetRouterResult:
74
80
  raise TypeError("Expected argument 'tenant_id' to be a str")
75
81
  pulumi.set(__self__, "tenant_id", tenant_id)
76
82
 
77
- @property
83
+ @_builtins.property
78
84
  @pulumi.getter(name="adminStateUp")
79
- def admin_state_up(self) -> Optional[bool]:
85
+ def admin_state_up(self) -> Optional[_builtins.bool]:
80
86
  return pulumi.get(self, "admin_state_up")
81
87
 
82
- @property
88
+ @_builtins.property
83
89
  @pulumi.getter(name="allTags")
84
- def all_tags(self) -> Sequence[str]:
90
+ def all_tags(self) -> Sequence[_builtins.str]:
85
91
  """
86
92
  The set of string tags applied on the router.
87
93
  """
88
94
  return pulumi.get(self, "all_tags")
89
95
 
90
- @property
96
+ @_builtins.property
91
97
  @pulumi.getter(name="availabilityZoneHints")
92
- def availability_zone_hints(self) -> Sequence[str]:
98
+ def availability_zone_hints(self) -> Sequence[_builtins.str]:
93
99
  """
94
100
  The availability zone that is used to make router resources highly available.
95
101
  """
96
102
  return pulumi.get(self, "availability_zone_hints")
97
103
 
98
- @property
104
+ @_builtins.property
99
105
  @pulumi.getter
100
- def description(self) -> Optional[str]:
106
+ def description(self) -> Optional[_builtins.str]:
101
107
  return pulumi.get(self, "description")
102
108
 
103
- @property
109
+ @_builtins.property
104
110
  @pulumi.getter
105
- def distributed(self) -> Optional[bool]:
111
+ def distributed(self) -> Optional[_builtins.bool]:
106
112
  return pulumi.get(self, "distributed")
107
113
 
108
- @property
114
+ @_builtins.property
109
115
  @pulumi.getter(name="enableSnat")
110
- def enable_snat(self) -> bool:
116
+ def enable_snat(self) -> _builtins.bool:
111
117
  """
112
118
  The value that points out if the Source NAT is enabled on the router.
113
119
  """
114
120
  return pulumi.get(self, "enable_snat")
115
121
 
116
- @property
122
+ @_builtins.property
117
123
  @pulumi.getter(name="externalFixedIps")
118
124
  def external_fixed_ips(self) -> Sequence['outputs.GetRouterExternalFixedIpResult']:
119
125
  """
@@ -121,50 +127,66 @@ class GetRouterResult:
121
127
  """
122
128
  return pulumi.get(self, "external_fixed_ips")
123
129
 
124
- @property
130
+ @_builtins.property
125
131
  @pulumi.getter(name="externalNetworkId")
126
- def external_network_id(self) -> str:
132
+ def external_network_id(self) -> _builtins.str:
127
133
  """
128
134
  The network UUID of an external gateway for the router.
129
135
  """
130
136
  return pulumi.get(self, "external_network_id")
131
137
 
132
- @property
138
+ @_builtins.property
139
+ @pulumi.getter(name="externalQosPolicyId")
140
+ def external_qos_policy_id(self) -> _builtins.str:
141
+ """
142
+ The QoS policy UUID applied on the external gateway for the router.
143
+ """
144
+ return pulumi.get(self, "external_qos_policy_id")
145
+
146
+ @_builtins.property
133
147
  @pulumi.getter
134
- def id(self) -> str:
148
+ def id(self) -> _builtins.str:
135
149
  """
136
150
  The provider-assigned unique ID for this managed resource.
137
151
  """
138
152
  return pulumi.get(self, "id")
139
153
 
140
- @property
154
+ @_builtins.property
141
155
  @pulumi.getter
142
- def name(self) -> Optional[str]:
156
+ def name(self) -> Optional[_builtins.str]:
143
157
  return pulumi.get(self, "name")
144
158
 
145
- @property
159
+ @_builtins.property
146
160
  @pulumi.getter
147
- def region(self) -> Optional[str]:
161
+ def region(self) -> Optional[_builtins.str]:
148
162
  return pulumi.get(self, "region")
149
163
 
150
- @property
164
+ @_builtins.property
151
165
  @pulumi.getter(name="routerId")
152
- def router_id(self) -> Optional[str]:
166
+ def router_id(self) -> Optional[_builtins.str]:
153
167
  return pulumi.get(self, "router_id")
154
168
 
155
- @property
169
+ @_builtins.property
170
+ @pulumi.getter
171
+ def routes(self) -> Sequence['outputs.GetRouterRouteResult']:
172
+ """
173
+ The list of static routes set on the router.
174
+ """
175
+ return pulumi.get(self, "routes")
176
+
177
+ @_builtins.property
156
178
  @pulumi.getter
157
- def status(self) -> Optional[str]:
179
+ def status(self) -> Optional[_builtins.str]:
158
180
  return pulumi.get(self, "status")
159
181
 
160
- @property
182
+ @_builtins.property
161
183
  @pulumi.getter
162
- def tags(self) -> Optional[Sequence[str]]:
184
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
163
185
  return pulumi.get(self, "tags")
164
186
 
165
- @property
187
+ @_builtins.property
166
188
  @pulumi.getter(name="tenantId")
167
- def tenant_id(self) -> Optional[str]:
189
+ def tenant_id(self) -> Optional[_builtins.str]:
168
190
  return pulumi.get(self, "tenant_id")
169
191
 
170
192
 
@@ -182,25 +204,27 @@ class AwaitableGetRouterResult(GetRouterResult):
182
204
  enable_snat=self.enable_snat,
183
205
  external_fixed_ips=self.external_fixed_ips,
184
206
  external_network_id=self.external_network_id,
207
+ external_qos_policy_id=self.external_qos_policy_id,
185
208
  id=self.id,
186
209
  name=self.name,
187
210
  region=self.region,
188
211
  router_id=self.router_id,
212
+ routes=self.routes,
189
213
  status=self.status,
190
214
  tags=self.tags,
191
215
  tenant_id=self.tenant_id)
192
216
 
193
217
 
194
- def get_router(admin_state_up: Optional[bool] = None,
195
- description: Optional[str] = None,
196
- distributed: Optional[bool] = None,
197
- enable_snat: Optional[bool] = None,
198
- name: Optional[str] = None,
199
- region: Optional[str] = None,
200
- router_id: Optional[str] = None,
201
- status: Optional[str] = None,
202
- tags: Optional[Sequence[str]] = None,
203
- tenant_id: Optional[str] = None,
218
+ def get_router(admin_state_up: Optional[_builtins.bool] = None,
219
+ description: Optional[_builtins.str] = None,
220
+ distributed: Optional[_builtins.bool] = None,
221
+ enable_snat: Optional[_builtins.bool] = None,
222
+ name: Optional[_builtins.str] = None,
223
+ region: Optional[_builtins.str] = None,
224
+ router_id: Optional[_builtins.str] = None,
225
+ status: Optional[_builtins.str] = None,
226
+ tags: Optional[Sequence[_builtins.str]] = None,
227
+ tenant_id: Optional[_builtins.str] = None,
204
228
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRouterResult:
205
229
  """
206
230
  Use this data source to get the ID of an available OpenStack router.
@@ -215,18 +239,18 @@ def get_router(admin_state_up: Optional[bool] = None,
215
239
  ```
216
240
 
217
241
 
218
- :param bool admin_state_up: Administrative up/down status for the router (must be "true" or "false" if provided).
219
- :param str description: Human-readable description of the router.
220
- :param bool distributed: Indicates whether or not to get a distributed router.
221
- :param bool enable_snat: The value that points out if the Source NAT is enabled on the router.
222
- :param str name: The name of the router.
223
- :param str region: The region in which to obtain the V2 Neutron client.
242
+ :param _builtins.bool admin_state_up: Administrative up/down status for the router (must be "true" or "false" if provided).
243
+ :param _builtins.str description: Human-readable description of the router.
244
+ :param _builtins.bool distributed: Indicates whether or not to get a distributed router.
245
+ :param _builtins.bool enable_snat: The value that points out if the Source NAT is enabled on the router.
246
+ :param _builtins.str name: The name of the router.
247
+ :param _builtins.str region: The region in which to obtain the V2 Neutron client.
224
248
  A Neutron client is needed to retrieve router ids. If omitted, the
225
249
  `region` argument of the provider is used.
226
- :param str router_id: The UUID of the router resource.
227
- :param str status: The status of the router (ACTIVE/DOWN).
228
- :param Sequence[str] tags: The list of router tags to filter.
229
- :param str tenant_id: The owner of the router.
250
+ :param _builtins.str router_id: The UUID of the router resource.
251
+ :param _builtins.str status: The status of the router (ACTIVE/DOWN).
252
+ :param Sequence[_builtins.str] tags: The list of router tags to filter.
253
+ :param _builtins.str tenant_id: The owner of the router.
230
254
  """
231
255
  __args__ = dict()
232
256
  __args__['adminStateUp'] = admin_state_up
@@ -251,24 +275,26 @@ def get_router(admin_state_up: Optional[bool] = None,
251
275
  enable_snat=pulumi.get(__ret__, 'enable_snat'),
252
276
  external_fixed_ips=pulumi.get(__ret__, 'external_fixed_ips'),
253
277
  external_network_id=pulumi.get(__ret__, 'external_network_id'),
278
+ external_qos_policy_id=pulumi.get(__ret__, 'external_qos_policy_id'),
254
279
  id=pulumi.get(__ret__, 'id'),
255
280
  name=pulumi.get(__ret__, 'name'),
256
281
  region=pulumi.get(__ret__, 'region'),
257
282
  router_id=pulumi.get(__ret__, 'router_id'),
283
+ routes=pulumi.get(__ret__, 'routes'),
258
284
  status=pulumi.get(__ret__, 'status'),
259
285
  tags=pulumi.get(__ret__, 'tags'),
260
286
  tenant_id=pulumi.get(__ret__, 'tenant_id'))
261
- def get_router_output(admin_state_up: Optional[pulumi.Input[Optional[bool]]] = None,
262
- description: Optional[pulumi.Input[Optional[str]]] = None,
263
- distributed: Optional[pulumi.Input[Optional[bool]]] = None,
264
- enable_snat: Optional[pulumi.Input[Optional[bool]]] = None,
265
- name: Optional[pulumi.Input[Optional[str]]] = None,
266
- region: Optional[pulumi.Input[Optional[str]]] = None,
267
- router_id: Optional[pulumi.Input[Optional[str]]] = None,
268
- status: Optional[pulumi.Input[Optional[str]]] = None,
269
- tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
270
- tenant_id: Optional[pulumi.Input[Optional[str]]] = None,
271
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRouterResult]:
287
+ def get_router_output(admin_state_up: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
288
+ description: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
289
+ distributed: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
290
+ enable_snat: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
291
+ name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
292
+ region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
293
+ router_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
294
+ status: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
295
+ tags: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
296
+ tenant_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
297
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRouterResult]:
272
298
  """
273
299
  Use this data source to get the ID of an available OpenStack router.
274
300
 
@@ -282,18 +308,18 @@ def get_router_output(admin_state_up: Optional[pulumi.Input[Optional[bool]]] = N
282
308
  ```
283
309
 
284
310
 
285
- :param bool admin_state_up: Administrative up/down status for the router (must be "true" or "false" if provided).
286
- :param str description: Human-readable description of the router.
287
- :param bool distributed: Indicates whether or not to get a distributed router.
288
- :param bool enable_snat: The value that points out if the Source NAT is enabled on the router.
289
- :param str name: The name of the router.
290
- :param str region: The region in which to obtain the V2 Neutron client.
311
+ :param _builtins.bool admin_state_up: Administrative up/down status for the router (must be "true" or "false" if provided).
312
+ :param _builtins.str description: Human-readable description of the router.
313
+ :param _builtins.bool distributed: Indicates whether or not to get a distributed router.
314
+ :param _builtins.bool enable_snat: The value that points out if the Source NAT is enabled on the router.
315
+ :param _builtins.str name: The name of the router.
316
+ :param _builtins.str region: The region in which to obtain the V2 Neutron client.
291
317
  A Neutron client is needed to retrieve router ids. If omitted, the
292
318
  `region` argument of the provider is used.
293
- :param str router_id: The UUID of the router resource.
294
- :param str status: The status of the router (ACTIVE/DOWN).
295
- :param Sequence[str] tags: The list of router tags to filter.
296
- :param str tenant_id: The owner of the router.
319
+ :param _builtins.str router_id: The UUID of the router resource.
320
+ :param _builtins.str status: The status of the router (ACTIVE/DOWN).
321
+ :param Sequence[_builtins.str] tags: The list of router tags to filter.
322
+ :param _builtins.str tenant_id: The owner of the router.
297
323
  """
298
324
  __args__ = dict()
299
325
  __args__['adminStateUp'] = admin_state_up
@@ -306,7 +332,7 @@ def get_router_output(admin_state_up: Optional[pulumi.Input[Optional[bool]]] = N
306
332
  __args__['status'] = status
307
333
  __args__['tags'] = tags
308
334
  __args__['tenantId'] = tenant_id
309
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
335
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
310
336
  __ret__ = pulumi.runtime.invoke_output('openstack:networking/getRouter:getRouter', __args__, opts=opts, typ=GetRouterResult)
311
337
  return __ret__.apply(lambda __response__: GetRouterResult(
312
338
  admin_state_up=pulumi.get(__response__, 'admin_state_up'),
@@ -317,10 +343,12 @@ def get_router_output(admin_state_up: Optional[pulumi.Input[Optional[bool]]] = N
317
343
  enable_snat=pulumi.get(__response__, 'enable_snat'),
318
344
  external_fixed_ips=pulumi.get(__response__, 'external_fixed_ips'),
319
345
  external_network_id=pulumi.get(__response__, 'external_network_id'),
346
+ external_qos_policy_id=pulumi.get(__response__, 'external_qos_policy_id'),
320
347
  id=pulumi.get(__response__, 'id'),
321
348
  name=pulumi.get(__response__, 'name'),
322
349
  region=pulumi.get(__response__, 'region'),
323
350
  router_id=pulumi.get(__response__, 'router_id'),
351
+ routes=pulumi.get(__response__, 'routes'),
324
352
  status=pulumi.get(__response__, 'status'),
325
353
  tags=pulumi.get(__response__, 'tags'),
326
354
  tenant_id=pulumi.get(__response__, 'tenant_id')))
@@ -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
@@ -55,67 +55,67 @@ class GetSecGroupResult:
55
55
  raise TypeError("Expected argument 'tenant_id' to be a str")
56
56
  pulumi.set(__self__, "tenant_id", tenant_id)
57
57
 
58
- @property
58
+ @_builtins.property
59
59
  @pulumi.getter(name="allTags")
60
- def all_tags(self) -> Sequence[str]:
60
+ def all_tags(self) -> Sequence[_builtins.str]:
61
61
  """
62
62
  The set of string tags applied on the security group.
63
63
  """
64
64
  return pulumi.get(self, "all_tags")
65
65
 
66
- @property
66
+ @_builtins.property
67
67
  @pulumi.getter
68
- def description(self) -> Optional[str]:
68
+ def description(self) -> Optional[_builtins.str]:
69
69
  """
70
70
  See Argument Reference above.
71
71
  """
72
72
  return pulumi.get(self, "description")
73
73
 
74
- @property
74
+ @_builtins.property
75
75
  @pulumi.getter
76
- def id(self) -> str:
76
+ def id(self) -> _builtins.str:
77
77
  """
78
78
  The provider-assigned unique ID for this managed resource.
79
79
  """
80
80
  return pulumi.get(self, "id")
81
81
 
82
- @property
82
+ @_builtins.property
83
83
  @pulumi.getter
84
- def name(self) -> Optional[str]:
84
+ def name(self) -> Optional[_builtins.str]:
85
85
  """
86
86
  See Argument Reference above.
87
87
  """
88
88
  return pulumi.get(self, "name")
89
89
 
90
- @property
90
+ @_builtins.property
91
91
  @pulumi.getter
92
- def region(self) -> str:
92
+ def region(self) -> _builtins.str:
93
93
  """
94
94
  See Argument Reference above.
95
95
  """
96
96
  return pulumi.get(self, "region")
97
97
 
98
- @property
98
+ @_builtins.property
99
99
  @pulumi.getter(name="secgroupId")
100
- def secgroup_id(self) -> Optional[str]:
100
+ def secgroup_id(self) -> Optional[_builtins.str]:
101
101
  return pulumi.get(self, "secgroup_id")
102
102
 
103
- @property
103
+ @_builtins.property
104
104
  @pulumi.getter
105
- def stateful(self) -> bool:
105
+ def stateful(self) -> _builtins.bool:
106
106
  """
107
107
  See Argument Reference above.
108
108
  """
109
109
  return pulumi.get(self, "stateful")
110
110
 
111
- @property
111
+ @_builtins.property
112
112
  @pulumi.getter
113
- def tags(self) -> Optional[Sequence[str]]:
113
+ def tags(self) -> Optional[Sequence[_builtins.str]]:
114
114
  return pulumi.get(self, "tags")
115
115
 
116
- @property
116
+ @_builtins.property
117
117
  @pulumi.getter(name="tenantId")
118
- def tenant_id(self) -> str:
118
+ def tenant_id(self) -> _builtins.str:
119
119
  return pulumi.get(self, "tenant_id")
120
120
 
121
121
 
@@ -136,13 +136,13 @@ class AwaitableGetSecGroupResult(GetSecGroupResult):
136
136
  tenant_id=self.tenant_id)
137
137
 
138
138
 
139
- def get_sec_group(description: Optional[str] = None,
140
- name: Optional[str] = None,
141
- region: Optional[str] = None,
142
- secgroup_id: Optional[str] = None,
143
- stateful: Optional[bool] = None,
144
- tags: Optional[Sequence[str]] = None,
145
- tenant_id: Optional[str] = None,
139
+ def get_sec_group(description: Optional[_builtins.str] = None,
140
+ name: Optional[_builtins.str] = None,
141
+ region: Optional[_builtins.str] = None,
142
+ secgroup_id: Optional[_builtins.str] = None,
143
+ stateful: Optional[_builtins.bool] = None,
144
+ tags: Optional[Sequence[_builtins.str]] = None,
145
+ tenant_id: Optional[_builtins.str] = None,
146
146
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecGroupResult:
147
147
  """
148
148
  Use this data source to get the ID of an available OpenStack security group.
@@ -157,15 +157,15 @@ def get_sec_group(description: Optional[str] = None,
157
157
  ```
158
158
 
159
159
 
160
- :param str description: Human-readable description the the subnet.
161
- :param str name: The name of the security group.
162
- :param str region: The region in which to obtain the V2 Neutron client.
160
+ :param _builtins.str description: Human-readable description the the subnet.
161
+ :param _builtins.str name: The name of the security group.
162
+ :param _builtins.str region: The region in which to obtain the V2 Neutron client.
163
163
  A Neutron client is needed to retrieve security groups ids. If omitted, the
164
164
  `region` argument of the provider is used.
165
- :param str secgroup_id: The ID of the security group.
166
- :param bool stateful: Whether the security group is stateful or not.
167
- :param Sequence[str] tags: The list of security group tags to filter.
168
- :param str tenant_id: The owner of the security group.
165
+ :param _builtins.str secgroup_id: The ID of the security group.
166
+ :param _builtins.bool stateful: Whether the security group is stateful or not.
167
+ :param Sequence[_builtins.str] tags: The list of security group tags to filter.
168
+ :param _builtins.str tenant_id: The owner of the security group.
169
169
  """
170
170
  __args__ = dict()
171
171
  __args__['description'] = description
@@ -188,14 +188,14 @@ def get_sec_group(description: Optional[str] = None,
188
188
  stateful=pulumi.get(__ret__, 'stateful'),
189
189
  tags=pulumi.get(__ret__, 'tags'),
190
190
  tenant_id=pulumi.get(__ret__, 'tenant_id'))
191
- def get_sec_group_output(description: Optional[pulumi.Input[Optional[str]]] = None,
192
- name: Optional[pulumi.Input[Optional[str]]] = None,
193
- region: Optional[pulumi.Input[Optional[str]]] = None,
194
- secgroup_id: Optional[pulumi.Input[Optional[str]]] = None,
195
- stateful: Optional[pulumi.Input[Optional[bool]]] = None,
196
- tags: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
197
- tenant_id: Optional[pulumi.Input[Optional[str]]] = None,
198
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecGroupResult]:
191
+ def get_sec_group_output(description: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
192
+ name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
193
+ region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
194
+ secgroup_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
195
+ stateful: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
196
+ tags: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
197
+ tenant_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
198
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecGroupResult]:
199
199
  """
200
200
  Use this data source to get the ID of an available OpenStack security group.
201
201
 
@@ -209,15 +209,15 @@ def get_sec_group_output(description: Optional[pulumi.Input[Optional[str]]] = No
209
209
  ```
210
210
 
211
211
 
212
- :param str description: Human-readable description the the subnet.
213
- :param str name: The name of the security group.
214
- :param str region: The region in which to obtain the V2 Neutron client.
212
+ :param _builtins.str description: Human-readable description the the subnet.
213
+ :param _builtins.str name: The name of the security group.
214
+ :param _builtins.str region: The region in which to obtain the V2 Neutron client.
215
215
  A Neutron client is needed to retrieve security groups ids. If omitted, the
216
216
  `region` argument of the provider is used.
217
- :param str secgroup_id: The ID of the security group.
218
- :param bool stateful: Whether the security group is stateful or not.
219
- :param Sequence[str] tags: The list of security group tags to filter.
220
- :param str tenant_id: The owner of the security group.
217
+ :param _builtins.str secgroup_id: The ID of the security group.
218
+ :param _builtins.bool stateful: Whether the security group is stateful or not.
219
+ :param Sequence[_builtins.str] tags: The list of security group tags to filter.
220
+ :param _builtins.str tenant_id: The owner of the security group.
221
221
  """
222
222
  __args__ = dict()
223
223
  __args__['description'] = description
@@ -227,7 +227,7 @@ def get_sec_group_output(description: Optional[pulumi.Input[Optional[str]]] = No
227
227
  __args__['stateful'] = stateful
228
228
  __args__['tags'] = tags
229
229
  __args__['tenantId'] = tenant_id
230
- opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
230
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
231
231
  __ret__ = pulumi.runtime.invoke_output('openstack:networking/getSecGroup:getSecGroup', __args__, opts=opts, typ=GetSecGroupResult)
232
232
  return __ret__.apply(lambda __response__: GetSecGroupResult(
233
233
  all_tags=pulumi.get(__response__, 'all_tags'),