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,23 +21,23 @@ __all__ = ['VolumeAttachArgs', 'VolumeAttach']
21
21
  @pulumi.input_type
22
22
  class VolumeAttachArgs:
23
23
  def __init__(__self__, *,
24
- instance_id: pulumi.Input[str],
25
- volume_id: pulumi.Input[str],
26
- device: Optional[pulumi.Input[str]] = None,
27
- multiattach: Optional[pulumi.Input[bool]] = None,
28
- region: Optional[pulumi.Input[str]] = None,
29
- tag: Optional[pulumi.Input[str]] = None,
24
+ instance_id: pulumi.Input[_builtins.str],
25
+ volume_id: pulumi.Input[_builtins.str],
26
+ device: Optional[pulumi.Input[_builtins.str]] = None,
27
+ multiattach: Optional[pulumi.Input[_builtins.bool]] = None,
28
+ region: Optional[pulumi.Input[_builtins.str]] = None,
29
+ tag: Optional[pulumi.Input[_builtins.str]] = None,
30
30
  vendor_options: Optional[pulumi.Input['VolumeAttachVendorOptionsArgs']] = None):
31
31
  """
32
32
  The set of arguments for constructing a VolumeAttach resource.
33
- :param pulumi.Input[str] instance_id: The ID of the Instance to attach the Volume to.
34
- :param pulumi.Input[str] volume_id: The ID of the Volume to attach to an Instance.
35
- :param pulumi.Input[bool] multiattach: Enable attachment of multiattach-capable volumes.
36
- :param pulumi.Input[str] region: The region in which to obtain the V2 Compute client.
33
+ :param pulumi.Input[_builtins.str] instance_id: The ID of the Instance to attach the Volume to.
34
+ :param pulumi.Input[_builtins.str] volume_id: The ID of the Volume to attach to an Instance.
35
+ :param pulumi.Input[_builtins.bool] multiattach: Enable attachment of multiattach-capable volumes.
36
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Compute client.
37
37
  A Compute client is needed to create a volume attachment. If omitted, the
38
38
  `region` argument of the provider is used. Changing this creates a
39
39
  new volume attachment.
40
- :param pulumi.Input[str] tag: Add a device role tag that is applied to the volume when
40
+ :param pulumi.Input[_builtins.str] tag: Add a device role tag that is applied to the volume when
41
41
  attaching it to the VM. Changing this creates a new volume attachment with
42
42
  the new tag. Requires microversion >= 2.49.
43
43
  :param pulumi.Input['VolumeAttachVendorOptionsArgs'] vendor_options: Map of additional vendor-specific options.
@@ -56,54 +56,54 @@ class VolumeAttachArgs:
56
56
  if vendor_options is not None:
57
57
  pulumi.set(__self__, "vendor_options", vendor_options)
58
58
 
59
- @property
59
+ @_builtins.property
60
60
  @pulumi.getter(name="instanceId")
61
- def instance_id(self) -> pulumi.Input[str]:
61
+ def instance_id(self) -> pulumi.Input[_builtins.str]:
62
62
  """
63
63
  The ID of the Instance to attach the Volume to.
64
64
  """
65
65
  return pulumi.get(self, "instance_id")
66
66
 
67
67
  @instance_id.setter
68
- def instance_id(self, value: pulumi.Input[str]):
68
+ def instance_id(self, value: pulumi.Input[_builtins.str]):
69
69
  pulumi.set(self, "instance_id", value)
70
70
 
71
- @property
71
+ @_builtins.property
72
72
  @pulumi.getter(name="volumeId")
73
- def volume_id(self) -> pulumi.Input[str]:
73
+ def volume_id(self) -> pulumi.Input[_builtins.str]:
74
74
  """
75
75
  The ID of the Volume to attach to an Instance.
76
76
  """
77
77
  return pulumi.get(self, "volume_id")
78
78
 
79
79
  @volume_id.setter
80
- def volume_id(self, value: pulumi.Input[str]):
80
+ def volume_id(self, value: pulumi.Input[_builtins.str]):
81
81
  pulumi.set(self, "volume_id", value)
82
82
 
83
- @property
83
+ @_builtins.property
84
84
  @pulumi.getter
85
- def device(self) -> Optional[pulumi.Input[str]]:
85
+ def device(self) -> Optional[pulumi.Input[_builtins.str]]:
86
86
  return pulumi.get(self, "device")
87
87
 
88
88
  @device.setter
89
- def device(self, value: Optional[pulumi.Input[str]]):
89
+ def device(self, value: Optional[pulumi.Input[_builtins.str]]):
90
90
  pulumi.set(self, "device", value)
91
91
 
92
- @property
92
+ @_builtins.property
93
93
  @pulumi.getter
94
- def multiattach(self) -> Optional[pulumi.Input[bool]]:
94
+ def multiattach(self) -> Optional[pulumi.Input[_builtins.bool]]:
95
95
  """
96
96
  Enable attachment of multiattach-capable volumes.
97
97
  """
98
98
  return pulumi.get(self, "multiattach")
99
99
 
100
100
  @multiattach.setter
101
- def multiattach(self, value: Optional[pulumi.Input[bool]]):
101
+ def multiattach(self, value: Optional[pulumi.Input[_builtins.bool]]):
102
102
  pulumi.set(self, "multiattach", value)
103
103
 
104
- @property
104
+ @_builtins.property
105
105
  @pulumi.getter
106
- def region(self) -> Optional[pulumi.Input[str]]:
106
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
107
107
  """
108
108
  The region in which to obtain the V2 Compute client.
109
109
  A Compute client is needed to create a volume attachment. If omitted, the
@@ -113,12 +113,12 @@ class VolumeAttachArgs:
113
113
  return pulumi.get(self, "region")
114
114
 
115
115
  @region.setter
116
- def region(self, value: Optional[pulumi.Input[str]]):
116
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
117
117
  pulumi.set(self, "region", value)
118
118
 
119
- @property
119
+ @_builtins.property
120
120
  @pulumi.getter
121
- def tag(self) -> Optional[pulumi.Input[str]]:
121
+ def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
122
122
  """
123
123
  Add a device role tag that is applied to the volume when
124
124
  attaching it to the VM. Changing this creates a new volume attachment with
@@ -127,10 +127,10 @@ class VolumeAttachArgs:
127
127
  return pulumi.get(self, "tag")
128
128
 
129
129
  @tag.setter
130
- def tag(self, value: Optional[pulumi.Input[str]]):
130
+ def tag(self, value: Optional[pulumi.Input[_builtins.str]]):
131
131
  pulumi.set(self, "tag", value)
132
132
 
133
- @property
133
+ @_builtins.property
134
134
  @pulumi.getter(name="vendorOptions")
135
135
  def vendor_options(self) -> Optional[pulumi.Input['VolumeAttachVendorOptionsArgs']]:
136
136
  """
@@ -147,27 +147,27 @@ class VolumeAttachArgs:
147
147
  @pulumi.input_type
148
148
  class _VolumeAttachState:
149
149
  def __init__(__self__, *,
150
- device: Optional[pulumi.Input[str]] = None,
151
- instance_id: Optional[pulumi.Input[str]] = None,
152
- multiattach: Optional[pulumi.Input[bool]] = None,
153
- region: Optional[pulumi.Input[str]] = None,
154
- tag: Optional[pulumi.Input[str]] = None,
150
+ device: Optional[pulumi.Input[_builtins.str]] = None,
151
+ instance_id: Optional[pulumi.Input[_builtins.str]] = None,
152
+ multiattach: Optional[pulumi.Input[_builtins.bool]] = None,
153
+ region: Optional[pulumi.Input[_builtins.str]] = None,
154
+ tag: Optional[pulumi.Input[_builtins.str]] = None,
155
155
  vendor_options: Optional[pulumi.Input['VolumeAttachVendorOptionsArgs']] = None,
156
- volume_id: Optional[pulumi.Input[str]] = None):
156
+ volume_id: Optional[pulumi.Input[_builtins.str]] = None):
157
157
  """
158
158
  Input properties used for looking up and filtering VolumeAttach resources.
159
- :param pulumi.Input[str] instance_id: The ID of the Instance to attach the Volume to.
160
- :param pulumi.Input[bool] multiattach: Enable attachment of multiattach-capable volumes.
161
- :param pulumi.Input[str] region: The region in which to obtain the V2 Compute client.
159
+ :param pulumi.Input[_builtins.str] instance_id: The ID of the Instance to attach the Volume to.
160
+ :param pulumi.Input[_builtins.bool] multiattach: Enable attachment of multiattach-capable volumes.
161
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Compute client.
162
162
  A Compute client is needed to create a volume attachment. If omitted, the
163
163
  `region` argument of the provider is used. Changing this creates a
164
164
  new volume attachment.
165
- :param pulumi.Input[str] tag: Add a device role tag that is applied to the volume when
165
+ :param pulumi.Input[_builtins.str] tag: Add a device role tag that is applied to the volume when
166
166
  attaching it to the VM. Changing this creates a new volume attachment with
167
167
  the new tag. Requires microversion >= 2.49.
168
168
  :param pulumi.Input['VolumeAttachVendorOptionsArgs'] vendor_options: Map of additional vendor-specific options.
169
169
  Supported options are described below.
170
- :param pulumi.Input[str] volume_id: The ID of the Volume to attach to an Instance.
170
+ :param pulumi.Input[_builtins.str] volume_id: The ID of the Volume to attach to an Instance.
171
171
  """
172
172
  if device is not None:
173
173
  pulumi.set(__self__, "device", device)
@@ -184,42 +184,42 @@ class _VolumeAttachState:
184
184
  if volume_id is not None:
185
185
  pulumi.set(__self__, "volume_id", volume_id)
186
186
 
187
- @property
187
+ @_builtins.property
188
188
  @pulumi.getter
189
- def device(self) -> Optional[pulumi.Input[str]]:
189
+ def device(self) -> Optional[pulumi.Input[_builtins.str]]:
190
190
  return pulumi.get(self, "device")
191
191
 
192
192
  @device.setter
193
- def device(self, value: Optional[pulumi.Input[str]]):
193
+ def device(self, value: Optional[pulumi.Input[_builtins.str]]):
194
194
  pulumi.set(self, "device", value)
195
195
 
196
- @property
196
+ @_builtins.property
197
197
  @pulumi.getter(name="instanceId")
198
- def instance_id(self) -> Optional[pulumi.Input[str]]:
198
+ def instance_id(self) -> Optional[pulumi.Input[_builtins.str]]:
199
199
  """
200
200
  The ID of the Instance to attach the Volume to.
201
201
  """
202
202
  return pulumi.get(self, "instance_id")
203
203
 
204
204
  @instance_id.setter
205
- def instance_id(self, value: Optional[pulumi.Input[str]]):
205
+ def instance_id(self, value: Optional[pulumi.Input[_builtins.str]]):
206
206
  pulumi.set(self, "instance_id", value)
207
207
 
208
- @property
208
+ @_builtins.property
209
209
  @pulumi.getter
210
- def multiattach(self) -> Optional[pulumi.Input[bool]]:
210
+ def multiattach(self) -> Optional[pulumi.Input[_builtins.bool]]:
211
211
  """
212
212
  Enable attachment of multiattach-capable volumes.
213
213
  """
214
214
  return pulumi.get(self, "multiattach")
215
215
 
216
216
  @multiattach.setter
217
- def multiattach(self, value: Optional[pulumi.Input[bool]]):
217
+ def multiattach(self, value: Optional[pulumi.Input[_builtins.bool]]):
218
218
  pulumi.set(self, "multiattach", value)
219
219
 
220
- @property
220
+ @_builtins.property
221
221
  @pulumi.getter
222
- def region(self) -> Optional[pulumi.Input[str]]:
222
+ def region(self) -> Optional[pulumi.Input[_builtins.str]]:
223
223
  """
224
224
  The region in which to obtain the V2 Compute client.
225
225
  A Compute client is needed to create a volume attachment. If omitted, the
@@ -229,12 +229,12 @@ class _VolumeAttachState:
229
229
  return pulumi.get(self, "region")
230
230
 
231
231
  @region.setter
232
- def region(self, value: Optional[pulumi.Input[str]]):
232
+ def region(self, value: Optional[pulumi.Input[_builtins.str]]):
233
233
  pulumi.set(self, "region", value)
234
234
 
235
- @property
235
+ @_builtins.property
236
236
  @pulumi.getter
237
- def tag(self) -> Optional[pulumi.Input[str]]:
237
+ def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
238
238
  """
239
239
  Add a device role tag that is applied to the volume when
240
240
  attaching it to the VM. Changing this creates a new volume attachment with
@@ -243,10 +243,10 @@ class _VolumeAttachState:
243
243
  return pulumi.get(self, "tag")
244
244
 
245
245
  @tag.setter
246
- def tag(self, value: Optional[pulumi.Input[str]]):
246
+ def tag(self, value: Optional[pulumi.Input[_builtins.str]]):
247
247
  pulumi.set(self, "tag", value)
248
248
 
249
- @property
249
+ @_builtins.property
250
250
  @pulumi.getter(name="vendorOptions")
251
251
  def vendor_options(self) -> Optional[pulumi.Input['VolumeAttachVendorOptionsArgs']]:
252
252
  """
@@ -259,31 +259,32 @@ class _VolumeAttachState:
259
259
  def vendor_options(self, value: Optional[pulumi.Input['VolumeAttachVendorOptionsArgs']]):
260
260
  pulumi.set(self, "vendor_options", value)
261
261
 
262
- @property
262
+ @_builtins.property
263
263
  @pulumi.getter(name="volumeId")
264
- def volume_id(self) -> Optional[pulumi.Input[str]]:
264
+ def volume_id(self) -> Optional[pulumi.Input[_builtins.str]]:
265
265
  """
266
266
  The ID of the Volume to attach to an Instance.
267
267
  """
268
268
  return pulumi.get(self, "volume_id")
269
269
 
270
270
  @volume_id.setter
271
- def volume_id(self, value: Optional[pulumi.Input[str]]):
271
+ def volume_id(self, value: Optional[pulumi.Input[_builtins.str]]):
272
272
  pulumi.set(self, "volume_id", value)
273
273
 
274
274
 
275
+ @pulumi.type_token("openstack:compute/volumeAttach:VolumeAttach")
275
276
  class VolumeAttach(pulumi.CustomResource):
276
277
  @overload
277
278
  def __init__(__self__,
278
279
  resource_name: str,
279
280
  opts: Optional[pulumi.ResourceOptions] = None,
280
- device: Optional[pulumi.Input[str]] = None,
281
- instance_id: Optional[pulumi.Input[str]] = None,
282
- multiattach: Optional[pulumi.Input[bool]] = None,
283
- region: Optional[pulumi.Input[str]] = None,
284
- tag: Optional[pulumi.Input[str]] = None,
281
+ device: Optional[pulumi.Input[_builtins.str]] = None,
282
+ instance_id: Optional[pulumi.Input[_builtins.str]] = None,
283
+ multiattach: Optional[pulumi.Input[_builtins.bool]] = None,
284
+ region: Optional[pulumi.Input[_builtins.str]] = None,
285
+ tag: Optional[pulumi.Input[_builtins.str]] = None,
285
286
  vendor_options: Optional[pulumi.Input[Union['VolumeAttachVendorOptionsArgs', 'VolumeAttachVendorOptionsArgsDict']]] = None,
286
- volume_id: Optional[pulumi.Input[str]] = None,
287
+ volume_id: Optional[pulumi.Input[_builtins.str]] = None,
287
288
  __props__=None):
288
289
  """
289
290
  Attaches a Block Storage Volume to an Instance using the OpenStack
@@ -308,6 +309,61 @@ class VolumeAttach(pulumi.CustomResource):
308
309
  volume_id=volume1.id)
309
310
  ```
310
311
 
312
+ ### Attaching multiple volumes to a single instance
313
+
314
+ ```python
315
+ import pulumi
316
+ import pulumi_openstack as openstack
317
+ import pulumi_std as std
318
+
319
+ volumes = []
320
+ for range in [{"value": i} for i in range(0, 2)]:
321
+ volumes.append(openstack.blockstorage.Volume(f"volumes-{range['value']}",
322
+ name=std.format(input="vol-%02d",
323
+ args=[range["value"] + 1]).result,
324
+ size=1))
325
+ instance1 = openstack.compute.Instance("instance_1",
326
+ name="instance_1",
327
+ security_groups=["default"])
328
+ attachments = []
329
+ for range in [{"value": i} for i in range(0, 2)]:
330
+ attachments.append(openstack.compute.VolumeAttach(f"attachments-{range['value']}",
331
+ instance_id=instance1.id,
332
+ volume_id=volumes[range["value"]].id))
333
+ pulumi.export("volumeDevices", [__item.device for __item in attachments])
334
+ ```
335
+
336
+ Note that the above example will not guarantee that the volumes are attached in
337
+ a deterministic manner. The volumes will be attached in a seemingly random
338
+ order.
339
+
340
+ If you want to ensure that the volumes are attached in a given order, create
341
+ explicit dependencies between the volumes, such as:
342
+
343
+ ```python
344
+ import pulumi
345
+ import pulumi_openstack as openstack
346
+ import pulumi_std as std
347
+
348
+ volumes = []
349
+ for range in [{"value": i} for i in range(0, 2)]:
350
+ volumes.append(openstack.blockstorage.Volume(f"volumes-{range['value']}",
351
+ name=std.format(input="vol-%02d",
352
+ args=[range["value"] + 1]).result,
353
+ size=1))
354
+ instance1 = openstack.compute.Instance("instance_1",
355
+ name="instance_1",
356
+ security_groups=["default"])
357
+ attach1 = openstack.compute.VolumeAttach("attach_1",
358
+ instance_id=instance1.id,
359
+ volume_id=volumes[0].id)
360
+ attach2 = openstack.compute.VolumeAttach("attach_2",
361
+ instance_id=instance1.id,
362
+ volume_id=volumes[1].id,
363
+ opts = pulumi.ResourceOptions(depends_on=[attach1]))
364
+ pulumi.export("volumeDevices", [__item["device"] for __item in attachments])
365
+ ```
366
+
311
367
  ### Using Multiattach-enabled volumes
312
368
 
313
369
  Multiattach Volumes are dependent upon your OpenStack cloud and not all
@@ -352,18 +408,18 @@ class VolumeAttach(pulumi.CustomResource):
352
408
 
353
409
  :param str resource_name: The name of the resource.
354
410
  :param pulumi.ResourceOptions opts: Options for the resource.
355
- :param pulumi.Input[str] instance_id: The ID of the Instance to attach the Volume to.
356
- :param pulumi.Input[bool] multiattach: Enable attachment of multiattach-capable volumes.
357
- :param pulumi.Input[str] region: The region in which to obtain the V2 Compute client.
411
+ :param pulumi.Input[_builtins.str] instance_id: The ID of the Instance to attach the Volume to.
412
+ :param pulumi.Input[_builtins.bool] multiattach: Enable attachment of multiattach-capable volumes.
413
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Compute client.
358
414
  A Compute client is needed to create a volume attachment. If omitted, the
359
415
  `region` argument of the provider is used. Changing this creates a
360
416
  new volume attachment.
361
- :param pulumi.Input[str] tag: Add a device role tag that is applied to the volume when
417
+ :param pulumi.Input[_builtins.str] tag: Add a device role tag that is applied to the volume when
362
418
  attaching it to the VM. Changing this creates a new volume attachment with
363
419
  the new tag. Requires microversion >= 2.49.
364
420
  :param pulumi.Input[Union['VolumeAttachVendorOptionsArgs', 'VolumeAttachVendorOptionsArgsDict']] vendor_options: Map of additional vendor-specific options.
365
421
  Supported options are described below.
366
- :param pulumi.Input[str] volume_id: The ID of the Volume to attach to an Instance.
422
+ :param pulumi.Input[_builtins.str] volume_id: The ID of the Volume to attach to an Instance.
367
423
  """
368
424
  ...
369
425
  @overload
@@ -394,6 +450,61 @@ class VolumeAttach(pulumi.CustomResource):
394
450
  volume_id=volume1.id)
395
451
  ```
396
452
 
453
+ ### Attaching multiple volumes to a single instance
454
+
455
+ ```python
456
+ import pulumi
457
+ import pulumi_openstack as openstack
458
+ import pulumi_std as std
459
+
460
+ volumes = []
461
+ for range in [{"value": i} for i in range(0, 2)]:
462
+ volumes.append(openstack.blockstorage.Volume(f"volumes-{range['value']}",
463
+ name=std.format(input="vol-%02d",
464
+ args=[range["value"] + 1]).result,
465
+ size=1))
466
+ instance1 = openstack.compute.Instance("instance_1",
467
+ name="instance_1",
468
+ security_groups=["default"])
469
+ attachments = []
470
+ for range in [{"value": i} for i in range(0, 2)]:
471
+ attachments.append(openstack.compute.VolumeAttach(f"attachments-{range['value']}",
472
+ instance_id=instance1.id,
473
+ volume_id=volumes[range["value"]].id))
474
+ pulumi.export("volumeDevices", [__item.device for __item in attachments])
475
+ ```
476
+
477
+ Note that the above example will not guarantee that the volumes are attached in
478
+ a deterministic manner. The volumes will be attached in a seemingly random
479
+ order.
480
+
481
+ If you want to ensure that the volumes are attached in a given order, create
482
+ explicit dependencies between the volumes, such as:
483
+
484
+ ```python
485
+ import pulumi
486
+ import pulumi_openstack as openstack
487
+ import pulumi_std as std
488
+
489
+ volumes = []
490
+ for range in [{"value": i} for i in range(0, 2)]:
491
+ volumes.append(openstack.blockstorage.Volume(f"volumes-{range['value']}",
492
+ name=std.format(input="vol-%02d",
493
+ args=[range["value"] + 1]).result,
494
+ size=1))
495
+ instance1 = openstack.compute.Instance("instance_1",
496
+ name="instance_1",
497
+ security_groups=["default"])
498
+ attach1 = openstack.compute.VolumeAttach("attach_1",
499
+ instance_id=instance1.id,
500
+ volume_id=volumes[0].id)
501
+ attach2 = openstack.compute.VolumeAttach("attach_2",
502
+ instance_id=instance1.id,
503
+ volume_id=volumes[1].id,
504
+ opts = pulumi.ResourceOptions(depends_on=[attach1]))
505
+ pulumi.export("volumeDevices", [__item["device"] for __item in attachments])
506
+ ```
507
+
397
508
  ### Using Multiattach-enabled volumes
398
509
 
399
510
  Multiattach Volumes are dependent upon your OpenStack cloud and not all
@@ -451,13 +562,13 @@ class VolumeAttach(pulumi.CustomResource):
451
562
  def _internal_init(__self__,
452
563
  resource_name: str,
453
564
  opts: Optional[pulumi.ResourceOptions] = None,
454
- device: Optional[pulumi.Input[str]] = None,
455
- instance_id: Optional[pulumi.Input[str]] = None,
456
- multiattach: Optional[pulumi.Input[bool]] = None,
457
- region: Optional[pulumi.Input[str]] = None,
458
- tag: Optional[pulumi.Input[str]] = None,
565
+ device: Optional[pulumi.Input[_builtins.str]] = None,
566
+ instance_id: Optional[pulumi.Input[_builtins.str]] = None,
567
+ multiattach: Optional[pulumi.Input[_builtins.bool]] = None,
568
+ region: Optional[pulumi.Input[_builtins.str]] = None,
569
+ tag: Optional[pulumi.Input[_builtins.str]] = None,
459
570
  vendor_options: Optional[pulumi.Input[Union['VolumeAttachVendorOptionsArgs', 'VolumeAttachVendorOptionsArgsDict']]] = None,
460
- volume_id: Optional[pulumi.Input[str]] = None,
571
+ volume_id: Optional[pulumi.Input[_builtins.str]] = None,
461
572
  __props__=None):
462
573
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
463
574
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -488,13 +599,13 @@ class VolumeAttach(pulumi.CustomResource):
488
599
  def get(resource_name: str,
489
600
  id: pulumi.Input[str],
490
601
  opts: Optional[pulumi.ResourceOptions] = None,
491
- device: Optional[pulumi.Input[str]] = None,
492
- instance_id: Optional[pulumi.Input[str]] = None,
493
- multiattach: Optional[pulumi.Input[bool]] = None,
494
- region: Optional[pulumi.Input[str]] = None,
495
- tag: Optional[pulumi.Input[str]] = None,
602
+ device: Optional[pulumi.Input[_builtins.str]] = None,
603
+ instance_id: Optional[pulumi.Input[_builtins.str]] = None,
604
+ multiattach: Optional[pulumi.Input[_builtins.bool]] = None,
605
+ region: Optional[pulumi.Input[_builtins.str]] = None,
606
+ tag: Optional[pulumi.Input[_builtins.str]] = None,
496
607
  vendor_options: Optional[pulumi.Input[Union['VolumeAttachVendorOptionsArgs', 'VolumeAttachVendorOptionsArgsDict']]] = None,
497
- volume_id: Optional[pulumi.Input[str]] = None) -> 'VolumeAttach':
608
+ volume_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'VolumeAttach':
498
609
  """
499
610
  Get an existing VolumeAttach resource's state with the given name, id, and optional extra
500
611
  properties used to qualify the lookup.
@@ -502,18 +613,18 @@ class VolumeAttach(pulumi.CustomResource):
502
613
  :param str resource_name: The unique name of the resulting resource.
503
614
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
504
615
  :param pulumi.ResourceOptions opts: Options for the resource.
505
- :param pulumi.Input[str] instance_id: The ID of the Instance to attach the Volume to.
506
- :param pulumi.Input[bool] multiattach: Enable attachment of multiattach-capable volumes.
507
- :param pulumi.Input[str] region: The region in which to obtain the V2 Compute client.
616
+ :param pulumi.Input[_builtins.str] instance_id: The ID of the Instance to attach the Volume to.
617
+ :param pulumi.Input[_builtins.bool] multiattach: Enable attachment of multiattach-capable volumes.
618
+ :param pulumi.Input[_builtins.str] region: The region in which to obtain the V2 Compute client.
508
619
  A Compute client is needed to create a volume attachment. If omitted, the
509
620
  `region` argument of the provider is used. Changing this creates a
510
621
  new volume attachment.
511
- :param pulumi.Input[str] tag: Add a device role tag that is applied to the volume when
622
+ :param pulumi.Input[_builtins.str] tag: Add a device role tag that is applied to the volume when
512
623
  attaching it to the VM. Changing this creates a new volume attachment with
513
624
  the new tag. Requires microversion >= 2.49.
514
625
  :param pulumi.Input[Union['VolumeAttachVendorOptionsArgs', 'VolumeAttachVendorOptionsArgsDict']] vendor_options: Map of additional vendor-specific options.
515
626
  Supported options are described below.
516
- :param pulumi.Input[str] volume_id: The ID of the Volume to attach to an Instance.
627
+ :param pulumi.Input[_builtins.str] volume_id: The ID of the Volume to attach to an Instance.
517
628
  """
518
629
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
519
630
 
@@ -528,30 +639,30 @@ class VolumeAttach(pulumi.CustomResource):
528
639
  __props__.__dict__["volume_id"] = volume_id
529
640
  return VolumeAttach(resource_name, opts=opts, __props__=__props__)
530
641
 
531
- @property
642
+ @_builtins.property
532
643
  @pulumi.getter
533
- def device(self) -> pulumi.Output[str]:
644
+ def device(self) -> pulumi.Output[_builtins.str]:
534
645
  return pulumi.get(self, "device")
535
646
 
536
- @property
647
+ @_builtins.property
537
648
  @pulumi.getter(name="instanceId")
538
- def instance_id(self) -> pulumi.Output[str]:
649
+ def instance_id(self) -> pulumi.Output[_builtins.str]:
539
650
  """
540
651
  The ID of the Instance to attach the Volume to.
541
652
  """
542
653
  return pulumi.get(self, "instance_id")
543
654
 
544
- @property
655
+ @_builtins.property
545
656
  @pulumi.getter
546
- def multiattach(self) -> pulumi.Output[Optional[bool]]:
657
+ def multiattach(self) -> pulumi.Output[Optional[_builtins.bool]]:
547
658
  """
548
659
  Enable attachment of multiattach-capable volumes.
549
660
  """
550
661
  return pulumi.get(self, "multiattach")
551
662
 
552
- @property
663
+ @_builtins.property
553
664
  @pulumi.getter
554
- def region(self) -> pulumi.Output[str]:
665
+ def region(self) -> pulumi.Output[_builtins.str]:
555
666
  """
556
667
  The region in which to obtain the V2 Compute client.
557
668
  A Compute client is needed to create a volume attachment. If omitted, the
@@ -560,9 +671,9 @@ class VolumeAttach(pulumi.CustomResource):
560
671
  """
561
672
  return pulumi.get(self, "region")
562
673
 
563
- @property
674
+ @_builtins.property
564
675
  @pulumi.getter
565
- def tag(self) -> pulumi.Output[Optional[str]]:
676
+ def tag(self) -> pulumi.Output[Optional[_builtins.str]]:
566
677
  """
567
678
  Add a device role tag that is applied to the volume when
568
679
  attaching it to the VM. Changing this creates a new volume attachment with
@@ -570,7 +681,7 @@ class VolumeAttach(pulumi.CustomResource):
570
681
  """
571
682
  return pulumi.get(self, "tag")
572
683
 
573
- @property
684
+ @_builtins.property
574
685
  @pulumi.getter(name="vendorOptions")
575
686
  def vendor_options(self) -> pulumi.Output[Optional['outputs.VolumeAttachVendorOptions']]:
576
687
  """
@@ -579,9 +690,9 @@ class VolumeAttach(pulumi.CustomResource):
579
690
  """
580
691
  return pulumi.get(self, "vendor_options")
581
692
 
582
- @property
693
+ @_builtins.property
583
694
  @pulumi.getter(name="volumeId")
584
- def volume_id(self) -> pulumi.Output[str]:
695
+ def volume_id(self) -> pulumi.Output[_builtins.str]:
585
696
  """
586
697
  The ID of the Volume to attach to an Instance.
587
698
  """
@@ -1,7 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins as _builtins
5
6
  import sys
6
7
  from .vars import _ExportableConfig
7
8
 
@@ -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
@@ -16,8 +16,8 @@ from .. import _utilities
16
16
 
17
17
  allowReauth: Optional[bool]
18
18
  """
19
- If set to `false`, OpenStack authorization won't be perfomed automatically, if the initial auth token get expired.
20
- Defaults to `true`
19
+ If set to `false`, OpenStack authorization won't be perfomed
20
+ automatically, if the initial auth token get expired. Defaults to `true`
21
21
  """
22
22
 
23
23
  applicationCredentialId: Optional[str]
@@ -62,8 +62,8 @@ The name of the Domain ID to scope to if no other domain is specified. Defaults
62
62
 
63
63
  delayedAuth: Optional[bool]
64
64
  """
65
- If set to `false`, OpenStack authorization will be perfomed, every time the service provider client is called. Defaults
66
- to `true`.
65
+ If set to `false`, OpenStack authorization will be perfomed,
66
+ every time the service provider client is called. Defaults to `true`.
67
67
  """
68
68
 
69
69
  disableNoCacheHeader: Optional[bool]
@@ -88,7 +88,8 @@ Outputs very verbose logs with all calls made to and responses from OpenStack
88
88
 
89
89
  endpointOverrides: Optional[str]
90
90
  """
91
- A map of services with an endpoint to override what was from the Keystone catalog
91
+ A map of services with an endpoint to override what was
92
+ from the Keystone catalog
92
93
  """
93
94
 
94
95
  endpointType: Optional[str]
@@ -130,7 +131,8 @@ The OpenStack region to connect to.
130
131
 
131
132
  swauth: Optional[bool]
132
133
  """
133
- Use Swift's authentication system instead of Keystone. Only used for interaction with Swift.
134
+ Use Swift's authentication system instead of Keystone. Only used for
135
+ interaction with Swift.
134
136
  """
135
137
 
136
138
  systemScope: Optional[bool]
@@ -140,12 +142,14 @@ If set to `true`, system scoped authorization will be enabled. Defaults to `fals
140
142
 
141
143
  tenantId: Optional[str]
142
144
  """
143
- The ID of the Tenant (Identity v2) or Project (Identity v3) to login with.
145
+ The ID of the Tenant (Identity v2) or Project (Identity v3)
146
+ to login with.
144
147
  """
145
148
 
146
149
  tenantName: Optional[str]
147
150
  """
148
- The name of the Tenant (Identity v2) or Project (Identity v3) to login with.
151
+ The name of the Tenant (Identity v2) or Project (Identity v3)
152
+ to login with.
149
153
  """
150
154
 
151
155
  token: Optional[str]