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.
- pulumi_openstack/__init__.py +143 -1
- pulumi_openstack/_inputs.py +92 -26
- pulumi_openstack/_utilities.py +9 -5
- pulumi_openstack/bgpvpn/__init__.py +14 -0
- pulumi_openstack/bgpvpn/_inputs.py +129 -0
- pulumi_openstack/bgpvpn/network_associate_v2.py +398 -0
- pulumi_openstack/bgpvpn/outputs.py +103 -0
- pulumi_openstack/bgpvpn/port_associate_v2.py +521 -0
- pulumi_openstack/bgpvpn/router_associate_v2.py +452 -0
- pulumi_openstack/bgpvpn/v2.py +827 -0
- pulumi_openstack/bgpvpn_network_associate_v2.py +79 -72
- pulumi_openstack/bgpvpn_port_associate_v2.py +99 -92
- pulumi_openstack/bgpvpn_router_associate_v2.py +96 -89
- pulumi_openstack/bgpvpn_v2.py +217 -210
- pulumi_openstack/blockstorage/__init__.py +2 -1
- pulumi_openstack/blockstorage/_inputs.py +47 -47
- pulumi_openstack/blockstorage/get_availability_zones_v3.py +20 -20
- pulumi_openstack/blockstorage/get_quotaset_v3.py +34 -34
- pulumi_openstack/blockstorage/get_snapshot_v3.py +42 -42
- pulumi_openstack/blockstorage/get_volume_v3.py +53 -53
- pulumi_openstack/blockstorage/outputs.py +40 -40
- pulumi_openstack/blockstorage/qos_association_v3.py +54 -53
- pulumi_openstack/blockstorage/qos_v3.py +71 -70
- pulumi_openstack/blockstorage/quote_set_v3.py +173 -178
- pulumi_openstack/blockstorage/volume.py +317 -255
- pulumi_openstack/blockstorage/volume_attach.py +234 -233
- pulumi_openstack/blockstorage/volume_type_access_v3.py +54 -53
- pulumi_openstack/blockstorage/volume_type_v3.py +88 -87
- pulumi_openstack/compute/__init__.py +3 -1
- pulumi_openstack/compute/_inputs.py +231 -231
- pulumi_openstack/compute/aggregate_v2.py +88 -87
- pulumi_openstack/compute/flavor.py +207 -206
- pulumi_openstack/compute/flavor_access.py +54 -53
- pulumi_openstack/compute/get_aggregate_v2.py +49 -27
- pulumi_openstack/compute/get_availability_zones.py +20 -20
- pulumi_openstack/compute/get_flavor.py +80 -80
- pulumi_openstack/compute/get_hypervisor_v2.py +49 -27
- pulumi_openstack/compute/get_instance_v2.py +58 -51
- pulumi_openstack/compute/get_keypair.py +28 -28
- pulumi_openstack/compute/get_limits_v2.py +56 -56
- pulumi_openstack/compute/get_quota_set_v2.py +46 -46
- pulumi_openstack/compute/get_servergroup_v2.py +218 -0
- pulumi_openstack/compute/instance.py +498 -446
- pulumi_openstack/compute/interface_attach.py +208 -87
- pulumi_openstack/compute/keypair.py +106 -105
- pulumi_openstack/compute/outputs.py +168 -155
- pulumi_openstack/compute/quota_set_v2.py +275 -280
- pulumi_openstack/compute/server_group.py +83 -82
- pulumi_openstack/compute/volume_attach.py +214 -103
- pulumi_openstack/config/__init__.py +2 -1
- pulumi_openstack/config/__init__.pyi +14 -10
- pulumi_openstack/config/vars.py +46 -42
- pulumi_openstack/containerinfra/__init__.py +2 -1
- pulumi_openstack/containerinfra/cluster.py +376 -376
- pulumi_openstack/containerinfra/cluster_template.py +543 -543
- pulumi_openstack/containerinfra/get_cluster.py +68 -68
- pulumi_openstack/containerinfra/get_cluster_template.py +80 -80
- pulumi_openstack/containerinfra/get_node_group.py +46 -46
- pulumi_openstack/containerinfra/node_group.py +230 -229
- pulumi_openstack/database/__init__.py +2 -1
- pulumi_openstack/database/_inputs.py +110 -110
- pulumi_openstack/database/configuration.py +60 -59
- pulumi_openstack/database/database.py +64 -56
- pulumi_openstack/database/instance.py +173 -111
- pulumi_openstack/database/outputs.py +74 -74
- pulumi_openstack/database/user.py +111 -103
- pulumi_openstack/dns/__init__.py +5 -1
- pulumi_openstack/dns/get_dns_zone.py +108 -108
- pulumi_openstack/dns/get_zone_share_v2.py +230 -0
- pulumi_openstack/dns/quota_v2.py +495 -0
- pulumi_openstack/dns/record_set.py +173 -172
- pulumi_openstack/dns/transfer_accept.py +105 -111
- pulumi_openstack/dns/transfer_request.py +135 -141
- pulumi_openstack/dns/zone.py +209 -215
- pulumi_openstack/dns/zone_share_v2.py +381 -0
- pulumi_openstack/firewall/__init__.py +5 -1
- pulumi_openstack/firewall/get_group_v2.py +334 -0
- pulumi_openstack/firewall/get_policy_v2.py +271 -0
- pulumi_openstack/firewall/get_rule_v2.py +428 -0
- pulumi_openstack/firewall/group_v2.py +182 -181
- pulumi_openstack/firewall/policy_v2.py +139 -138
- pulumi_openstack/firewall/rule_v2.py +241 -240
- pulumi_openstack/get_fw_group_v2.py +80 -76
- pulumi_openstack/get_fw_policy_v2.py +62 -58
- pulumi_openstack/get_fw_rule_v2.py +108 -104
- pulumi_openstack/identity/__init__.py +4 -1
- pulumi_openstack/identity/_inputs.py +32 -32
- pulumi_openstack/identity/application_credential.py +134 -133
- pulumi_openstack/identity/ec2_credential_v3.py +81 -80
- pulumi_openstack/identity/endpoint_v3.py +123 -122
- pulumi_openstack/identity/get_auth_scope.py +48 -48
- pulumi_openstack/identity/get_endpoint.py +50 -50
- pulumi_openstack/identity/get_group.py +26 -26
- pulumi_openstack/identity/get_project.py +55 -53
- pulumi_openstack/identity/get_project_ids_v3.py +58 -54
- pulumi_openstack/identity/get_role.py +24 -24
- pulumi_openstack/identity/get_service.py +32 -32
- pulumi_openstack/identity/get_user.py +61 -59
- pulumi_openstack/identity/group_v3.py +71 -70
- pulumi_openstack/identity/inherit_role_assignment.py +128 -100
- pulumi_openstack/identity/limit_v3.py +532 -0
- pulumi_openstack/identity/outputs.py +64 -64
- pulumi_openstack/identity/project.py +139 -138
- pulumi_openstack/identity/registered_limit_v3.py +434 -0
- pulumi_openstack/identity/role.py +54 -53
- pulumi_openstack/identity/role_assignment.py +128 -100
- pulumi_openstack/identity/service_v3.py +88 -87
- pulumi_openstack/identity/user.py +210 -209
- pulumi_openstack/identity/user_membership_v3.py +54 -53
- pulumi_openstack/images/__init__.py +2 -1
- pulumi_openstack/images/get_image.py +122 -122
- pulumi_openstack/images/get_image_ids.py +98 -98
- pulumi_openstack/images/image.py +420 -419
- pulumi_openstack/images/image_access.py +98 -97
- pulumi_openstack/images/image_access_accept.py +98 -97
- pulumi_openstack/keymanager/__init__.py +2 -1
- pulumi_openstack/keymanager/_inputs.py +113 -113
- pulumi_openstack/keymanager/container_v1.py +107 -106
- pulumi_openstack/keymanager/get_container.py +33 -33
- pulumi_openstack/keymanager/get_secret.py +89 -89
- pulumi_openstack/keymanager/order_v1.py +121 -120
- pulumi_openstack/keymanager/outputs.py +129 -129
- pulumi_openstack/keymanager/secret_v1.py +290 -255
- pulumi_openstack/lb_flavorprofile_v2.py +111 -70
- pulumi_openstack/lb_loadbalancer_v2.py +266 -261
- pulumi_openstack/loadbalancer/__init__.py +10 -1
- pulumi_openstack/loadbalancer/_inputs.py +75 -75
- pulumi_openstack/loadbalancer/flavor_v2.py +447 -0
- pulumi_openstack/loadbalancer/flavorprofile_v2.py +430 -0
- pulumi_openstack/loadbalancer/get_flavor_v2.py +30 -30
- pulumi_openstack/loadbalancer/get_flavorprofile_v2.py +190 -0
- pulumi_openstack/loadbalancer/get_lb_flavor_deprecated.py +197 -0
- pulumi_openstack/loadbalancer/get_listener_v2.py +634 -0
- pulumi_openstack/loadbalancer/get_loadbalancer_v2.py +470 -0
- pulumi_openstack/loadbalancer/get_pool_v2.py +482 -0
- pulumi_openstack/loadbalancer/l7_policy_v2.py +209 -208
- pulumi_openstack/loadbalancer/l7_rule_v2.py +167 -166
- pulumi_openstack/loadbalancer/listener.py +481 -480
- pulumi_openstack/loadbalancer/load_balancer.py +1033 -0
- pulumi_openstack/loadbalancer/member.py +224 -223
- pulumi_openstack/loadbalancer/members.py +40 -39
- pulumi_openstack/loadbalancer/monitor.py +258 -257
- pulumi_openstack/loadbalancer/outputs.py +311 -51
- pulumi_openstack/loadbalancer/pool.py +291 -290
- pulumi_openstack/loadbalancer/quota.py +156 -161
- pulumi_openstack/networking/__init__.py +8 -1
- pulumi_openstack/networking/_inputs.py +234 -141
- pulumi_openstack/networking/address_group_v2.py +421 -0
- pulumi_openstack/networking/address_scope.py +88 -87
- pulumi_openstack/networking/bgp_peer_v2.py +550 -0
- pulumi_openstack/networking/bgp_speaker_v2.py +697 -0
- pulumi_openstack/networking/floating_ip.py +247 -247
- pulumi_openstack/networking/floating_ip_associate.py +67 -66
- pulumi_openstack/networking/get_address_scope.py +36 -36
- pulumi_openstack/networking/get_floating_ip.py +66 -66
- pulumi_openstack/networking/get_network.py +85 -85
- pulumi_openstack/networking/get_port.py +111 -111
- pulumi_openstack/networking/get_port_ids.py +106 -106
- pulumi_openstack/networking/get_qos_bandwidth_limit_rule.py +32 -32
- pulumi_openstack/networking/get_qos_dscp_marking_rule.py +24 -24
- pulumi_openstack/networking/get_qos_minimum_bandwidth_rule.py +28 -28
- pulumi_openstack/networking/get_qos_policy.py +56 -56
- pulumi_openstack/networking/get_quota_v2.py +36 -36
- pulumi_openstack/networking/get_router.py +102 -74
- pulumi_openstack/networking/get_sec_group.py +50 -50
- pulumi_openstack/networking/get_segment_v2.py +303 -0
- pulumi_openstack/networking/get_subnet.py +126 -107
- pulumi_openstack/networking/get_subnet_ids_v2.py +128 -109
- pulumi_openstack/networking/get_subnet_pool.py +94 -94
- pulumi_openstack/networking/get_trunk.py +63 -63
- pulumi_openstack/networking/network.py +270 -269
- pulumi_openstack/networking/outputs.py +287 -177
- pulumi_openstack/networking/port.py +356 -355
- pulumi_openstack/networking/port_forwarding_v2.py +139 -138
- pulumi_openstack/networking/port_sec_group_associate.py +80 -79
- pulumi_openstack/networking/qos_bandwidth_limit_rule.py +88 -87
- pulumi_openstack/networking/qos_dscp_marking_rule.py +54 -53
- pulumi_openstack/networking/qos_minimum_bandwidth_rule.py +71 -70
- pulumi_openstack/networking/qos_policy.py +175 -174
- pulumi_openstack/networking/quota_v2.py +190 -195
- pulumi_openstack/networking/rbac_policy_v2.py +95 -94
- pulumi_openstack/networking/router.py +286 -224
- pulumi_openstack/networking/router_interface.py +88 -87
- pulumi_openstack/networking/router_route.py +71 -70
- pulumi_openstack/networking/router_routes_v2.py +382 -0
- pulumi_openstack/networking/sec_group.py +131 -130
- pulumi_openstack/networking/sec_group_rule.py +258 -189
- pulumi_openstack/networking/segment_v2.py +633 -0
- pulumi_openstack/networking/subnet.py +399 -337
- pulumi_openstack/networking/subnet_pool.py +294 -293
- pulumi_openstack/networking/subnet_route.py +71 -70
- pulumi_openstack/networking/trunk.py +134 -133
- pulumi_openstack/objectstorage/__init__.py +2 -1
- pulumi_openstack/objectstorage/_inputs.py +22 -16
- pulumi_openstack/objectstorage/account_v1.py +99 -98
- pulumi_openstack/objectstorage/container.py +429 -308
- pulumi_openstack/objectstorage/container_object.py +298 -289
- pulumi_openstack/objectstorage/outputs.py +15 -11
- pulumi_openstack/objectstorage/temp_url.py +165 -164
- pulumi_openstack/orchestration/__init__.py +2 -1
- pulumi_openstack/orchestration/_inputs.py +18 -18
- pulumi_openstack/orchestration/outputs.py +12 -12
- pulumi_openstack/orchestration/stack_v1.py +278 -277
- pulumi_openstack/outputs.py +75 -18
- pulumi_openstack/provider.py +351 -316
- pulumi_openstack/pulumi-plugin.json +1 -1
- pulumi_openstack/sharedfilesystem/__init__.py +2 -1
- pulumi_openstack/sharedfilesystem/_inputs.py +12 -12
- pulumi_openstack/sharedfilesystem/get_availbility_zones.py +14 -14
- pulumi_openstack/sharedfilesystem/get_share.py +74 -70
- pulumi_openstack/sharedfilesystem/get_share_network.py +66 -66
- pulumi_openstack/sharedfilesystem/get_snapshot.py +44 -44
- pulumi_openstack/sharedfilesystem/outputs.py +14 -14
- pulumi_openstack/sharedfilesystem/security_service.py +182 -181
- pulumi_openstack/sharedfilesystem/share.py +263 -262
- pulumi_openstack/sharedfilesystem/share_access.py +123 -122
- pulumi_openstack/sharedfilesystem/share_network.py +150 -149
- pulumi_openstack/taas_tap_mirror_v2.py +653 -0
- pulumi_openstack/vpnaas/__init__.py +2 -1
- pulumi_openstack/vpnaas/_inputs.py +42 -42
- pulumi_openstack/vpnaas/endpoint_group.py +122 -121
- pulumi_openstack/vpnaas/ike_policy.py +213 -198
- pulumi_openstack/vpnaas/ip_sec_policy.py +213 -198
- pulumi_openstack/vpnaas/outputs.py +28 -28
- pulumi_openstack/vpnaas/service.py +166 -165
- pulumi_openstack/vpnaas/site_connection.py +312 -311
- pulumi_openstack/workflow_workflow_v2.py +244 -0
- {pulumi_openstack-5.1.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/METADATA +5 -5
- pulumi_openstack-5.5.0a1767139866.dist-info/RECORD +232 -0
- {pulumi_openstack-5.1.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/WHEEL +1 -1
- pulumi_openstack-5.1.0a1732601510.dist-info/RECORD +0 -200
- {pulumi_openstack-5.1.0a1732601510.dist-info → pulumi_openstack-5.5.0a1767139866.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins as _builtins
|
|
5
6
|
from .. import _utilities
|
|
6
7
|
import typing
|
|
7
8
|
# Export this package's modules as members:
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -23,37 +23,37 @@ MYPY = False
|
|
|
23
23
|
|
|
24
24
|
if not MYPY:
|
|
25
25
|
class ShareExportLocationArgsDict(TypedDict):
|
|
26
|
-
path: NotRequired[pulumi.Input[str]]
|
|
27
|
-
preferred: NotRequired[pulumi.Input[str]]
|
|
26
|
+
path: NotRequired[pulumi.Input[_builtins.str]]
|
|
27
|
+
preferred: NotRequired[pulumi.Input[_builtins.str]]
|
|
28
28
|
elif False:
|
|
29
29
|
ShareExportLocationArgsDict: TypeAlias = Mapping[str, Any]
|
|
30
30
|
|
|
31
31
|
@pulumi.input_type
|
|
32
32
|
class ShareExportLocationArgs:
|
|
33
33
|
def __init__(__self__, *,
|
|
34
|
-
path: Optional[pulumi.Input[str]] = None,
|
|
35
|
-
preferred: Optional[pulumi.Input[str]] = None):
|
|
34
|
+
path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
|
+
preferred: Optional[pulumi.Input[_builtins.str]] = None):
|
|
36
36
|
if path is not None:
|
|
37
37
|
pulumi.set(__self__, "path", path)
|
|
38
38
|
if preferred is not None:
|
|
39
39
|
pulumi.set(__self__, "preferred", preferred)
|
|
40
40
|
|
|
41
|
-
@property
|
|
41
|
+
@_builtins.property
|
|
42
42
|
@pulumi.getter
|
|
43
|
-
def path(self) -> Optional[pulumi.Input[str]]:
|
|
43
|
+
def path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
44
44
|
return pulumi.get(self, "path")
|
|
45
45
|
|
|
46
46
|
@path.setter
|
|
47
|
-
def path(self, value: Optional[pulumi.Input[str]]):
|
|
47
|
+
def path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
48
48
|
pulumi.set(self, "path", value)
|
|
49
49
|
|
|
50
|
-
@property
|
|
50
|
+
@_builtins.property
|
|
51
51
|
@pulumi.getter
|
|
52
|
-
def preferred(self) -> Optional[pulumi.Input[str]]:
|
|
52
|
+
def preferred(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
53
53
|
return pulumi.get(self, "preferred")
|
|
54
54
|
|
|
55
55
|
@preferred.setter
|
|
56
|
-
def preferred(self, value: Optional[pulumi.Input[str]]):
|
|
56
|
+
def preferred(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
57
57
|
pulumi.set(self, "preferred", value)
|
|
58
58
|
|
|
59
59
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -37,25 +37,25 @@ class GetAvailbilityZonesResult:
|
|
|
37
37
|
raise TypeError("Expected argument 'region' to be a str")
|
|
38
38
|
pulumi.set(__self__, "region", region)
|
|
39
39
|
|
|
40
|
-
@property
|
|
40
|
+
@_builtins.property
|
|
41
41
|
@pulumi.getter
|
|
42
|
-
def id(self) -> str:
|
|
42
|
+
def id(self) -> _builtins.str:
|
|
43
43
|
"""
|
|
44
44
|
The provider-assigned unique ID for this managed resource.
|
|
45
45
|
"""
|
|
46
46
|
return pulumi.get(self, "id")
|
|
47
47
|
|
|
48
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
49
49
|
@pulumi.getter
|
|
50
|
-
def names(self) -> Sequence[str]:
|
|
50
|
+
def names(self) -> Sequence[_builtins.str]:
|
|
51
51
|
"""
|
|
52
52
|
The names of the availability zones, ordered alphanumerically.
|
|
53
53
|
"""
|
|
54
54
|
return pulumi.get(self, "names")
|
|
55
55
|
|
|
56
|
-
@property
|
|
56
|
+
@_builtins.property
|
|
57
57
|
@pulumi.getter
|
|
58
|
-
def region(self) -> str:
|
|
58
|
+
def region(self) -> _builtins.str:
|
|
59
59
|
"""
|
|
60
60
|
See Argument Reference above.
|
|
61
61
|
"""
|
|
@@ -73,7 +73,7 @@ class AwaitableGetAvailbilityZonesResult(GetAvailbilityZonesResult):
|
|
|
73
73
|
region=self.region)
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
def get_availbility_zones(region: Optional[str] = None,
|
|
76
|
+
def get_availbility_zones(region: Optional[_builtins.str] = None,
|
|
77
77
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAvailbilityZonesResult:
|
|
78
78
|
"""
|
|
79
79
|
Use this data source to get a list of Shared File System availability zones
|
|
@@ -89,7 +89,7 @@ def get_availbility_zones(region: Optional[str] = None,
|
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
|
|
92
|
-
:param str region: The region in which to obtain the V2 Shared File System
|
|
92
|
+
:param _builtins.str region: The region in which to obtain the V2 Shared File System
|
|
93
93
|
client. If omitted, the `region` argument of the provider is used.
|
|
94
94
|
"""
|
|
95
95
|
__args__ = dict()
|
|
@@ -101,8 +101,8 @@ def get_availbility_zones(region: Optional[str] = None,
|
|
|
101
101
|
id=pulumi.get(__ret__, 'id'),
|
|
102
102
|
names=pulumi.get(__ret__, 'names'),
|
|
103
103
|
region=pulumi.get(__ret__, 'region'))
|
|
104
|
-
def get_availbility_zones_output(region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
105
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAvailbilityZonesResult]:
|
|
104
|
+
def get_availbility_zones_output(region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
105
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAvailbilityZonesResult]:
|
|
106
106
|
"""
|
|
107
107
|
Use this data source to get a list of Shared File System availability zones
|
|
108
108
|
from OpenStack
|
|
@@ -117,12 +117,12 @@ def get_availbility_zones_output(region: Optional[pulumi.Input[Optional[str]]] =
|
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
|
|
120
|
-
:param str region: The region in which to obtain the V2 Shared File System
|
|
120
|
+
:param _builtins.str region: The region in which to obtain the V2 Shared File System
|
|
121
121
|
client. If omitted, the `region` argument of the provider is used.
|
|
122
122
|
"""
|
|
123
123
|
__args__ = dict()
|
|
124
124
|
__args__['region'] = region
|
|
125
|
-
opts = pulumi.
|
|
125
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
126
126
|
__ret__ = pulumi.runtime.invoke_output('openstack:sharedfilesystem/getAvailbilityZones:getAvailbilityZones', __args__, opts=opts, typ=GetAvailbilityZonesResult)
|
|
127
127
|
return __ret__.apply(lambda __response__: GetAvailbilityZonesResult(
|
|
128
128
|
id=pulumi.get(__response__, 'id'),
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -74,31 +74,31 @@ class GetShareResult:
|
|
|
74
74
|
raise TypeError("Expected argument 'status' to be a str")
|
|
75
75
|
pulumi.set(__self__, "status", status)
|
|
76
76
|
|
|
77
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
78
78
|
@pulumi.getter(name="availabilityZone")
|
|
79
|
-
def availability_zone(self) -> str:
|
|
79
|
+
def availability_zone(self) -> _builtins.str:
|
|
80
80
|
"""
|
|
81
81
|
The share availability zone.
|
|
82
82
|
"""
|
|
83
83
|
return pulumi.get(self, "availability_zone")
|
|
84
84
|
|
|
85
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
86
86
|
@pulumi.getter
|
|
87
|
-
def description(self) -> str:
|
|
87
|
+
def description(self) -> _builtins.str:
|
|
88
88
|
"""
|
|
89
89
|
See Argument Reference above.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "description")
|
|
92
92
|
|
|
93
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
94
94
|
@pulumi.getter(name="exportLocationPath")
|
|
95
|
-
def export_location_path(self) -> Optional[str]:
|
|
95
|
+
def export_location_path(self) -> Optional[_builtins.str]:
|
|
96
96
|
"""
|
|
97
97
|
See Argument Reference above.
|
|
98
98
|
"""
|
|
99
99
|
return pulumi.get(self, "export_location_path")
|
|
100
100
|
|
|
101
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
102
102
|
@pulumi.getter(name="exportLocations")
|
|
103
103
|
def export_locations(self) -> Sequence['outputs.GetShareExportLocationResult']:
|
|
104
104
|
"""
|
|
@@ -108,89 +108,89 @@ class GetShareResult:
|
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "export_locations")
|
|
110
110
|
|
|
111
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
112
112
|
@pulumi.getter
|
|
113
|
-
def id(self) -> str:
|
|
113
|
+
def id(self) -> _builtins.str:
|
|
114
114
|
"""
|
|
115
115
|
The provider-assigned unique ID for this managed resource.
|
|
116
116
|
"""
|
|
117
117
|
return pulumi.get(self, "id")
|
|
118
118
|
|
|
119
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
120
120
|
@pulumi.getter(name="isPublic")
|
|
121
|
-
def is_public(self) -> bool:
|
|
121
|
+
def is_public(self) -> _builtins.bool:
|
|
122
122
|
"""
|
|
123
123
|
See Argument Reference above.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "is_public")
|
|
126
126
|
|
|
127
|
-
@property
|
|
127
|
+
@_builtins.property
|
|
128
128
|
@pulumi.getter
|
|
129
|
-
def metadata(self) -> Mapping[str, str]:
|
|
129
|
+
def metadata(self) -> Mapping[str, _builtins.str]:
|
|
130
130
|
"""
|
|
131
131
|
See Argument Reference above.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "metadata")
|
|
134
134
|
|
|
135
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
136
136
|
@pulumi.getter
|
|
137
|
-
def name(self) -> str:
|
|
137
|
+
def name(self) -> _builtins.str:
|
|
138
138
|
"""
|
|
139
139
|
See Argument Reference above.
|
|
140
140
|
"""
|
|
141
141
|
return pulumi.get(self, "name")
|
|
142
142
|
|
|
143
|
-
@property
|
|
143
|
+
@_builtins.property
|
|
144
144
|
@pulumi.getter(name="projectId")
|
|
145
|
-
def project_id(self) -> str:
|
|
145
|
+
def project_id(self) -> _builtins.str:
|
|
146
146
|
"""
|
|
147
147
|
See Argument Reference above.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "project_id")
|
|
150
150
|
|
|
151
|
-
@property
|
|
151
|
+
@_builtins.property
|
|
152
152
|
@pulumi.getter
|
|
153
|
-
def region(self) -> str:
|
|
153
|
+
def region(self) -> _builtins.str:
|
|
154
154
|
"""
|
|
155
|
-
|
|
155
|
+
See Argument Reference above.
|
|
156
156
|
"""
|
|
157
157
|
return pulumi.get(self, "region")
|
|
158
158
|
|
|
159
|
-
@property
|
|
159
|
+
@_builtins.property
|
|
160
160
|
@pulumi.getter(name="shareNetworkId")
|
|
161
|
-
def share_network_id(self) -> str:
|
|
161
|
+
def share_network_id(self) -> _builtins.str:
|
|
162
162
|
"""
|
|
163
163
|
See Argument Reference above.
|
|
164
164
|
"""
|
|
165
165
|
return pulumi.get(self, "share_network_id")
|
|
166
166
|
|
|
167
|
-
@property
|
|
167
|
+
@_builtins.property
|
|
168
168
|
@pulumi.getter(name="shareProto")
|
|
169
|
-
def share_proto(self) -> str:
|
|
169
|
+
def share_proto(self) -> _builtins.str:
|
|
170
170
|
"""
|
|
171
171
|
The share protocol.
|
|
172
172
|
"""
|
|
173
173
|
return pulumi.get(self, "share_proto")
|
|
174
174
|
|
|
175
|
-
@property
|
|
175
|
+
@_builtins.property
|
|
176
176
|
@pulumi.getter
|
|
177
|
-
def size(self) -> int:
|
|
177
|
+
def size(self) -> _builtins.int:
|
|
178
178
|
"""
|
|
179
179
|
The share size, in GBs.
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "size")
|
|
182
182
|
|
|
183
|
-
@property
|
|
183
|
+
@_builtins.property
|
|
184
184
|
@pulumi.getter(name="snapshotId")
|
|
185
|
-
def snapshot_id(self) -> str:
|
|
185
|
+
def snapshot_id(self) -> _builtins.str:
|
|
186
186
|
"""
|
|
187
187
|
See Argument Reference above.
|
|
188
188
|
"""
|
|
189
189
|
return pulumi.get(self, "snapshot_id")
|
|
190
190
|
|
|
191
|
-
@property
|
|
191
|
+
@_builtins.property
|
|
192
192
|
@pulumi.getter
|
|
193
|
-
def status(self) -> str:
|
|
193
|
+
def status(self) -> _builtins.str:
|
|
194
194
|
"""
|
|
195
195
|
See Argument Reference above.
|
|
196
196
|
"""
|
|
@@ -220,15 +220,15 @@ class AwaitableGetShareResult(GetShareResult):
|
|
|
220
220
|
status=self.status)
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
def get_share(description: Optional[str] = None,
|
|
224
|
-
export_location_path: Optional[str] = None,
|
|
225
|
-
is_public: Optional[bool] = None,
|
|
226
|
-
metadata: Optional[Mapping[str, str]] = None,
|
|
227
|
-
name: Optional[str] = None,
|
|
228
|
-
region: Optional[str] = None,
|
|
229
|
-
share_network_id: Optional[str] = None,
|
|
230
|
-
snapshot_id: Optional[str] = None,
|
|
231
|
-
status: Optional[str] = None,
|
|
223
|
+
def get_share(description: Optional[_builtins.str] = None,
|
|
224
|
+
export_location_path: Optional[_builtins.str] = None,
|
|
225
|
+
is_public: Optional[_builtins.bool] = None,
|
|
226
|
+
metadata: Optional[Mapping[str, _builtins.str]] = None,
|
|
227
|
+
name: Optional[_builtins.str] = None,
|
|
228
|
+
region: Optional[_builtins.str] = None,
|
|
229
|
+
share_network_id: Optional[_builtins.str] = None,
|
|
230
|
+
snapshot_id: Optional[_builtins.str] = None,
|
|
231
|
+
status: Optional[_builtins.str] = None,
|
|
232
232
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetShareResult:
|
|
233
233
|
"""
|
|
234
234
|
Use this data source to get the ID of an available Shared File System share.
|
|
@@ -243,18 +243,20 @@ def get_share(description: Optional[str] = None,
|
|
|
243
243
|
```
|
|
244
244
|
|
|
245
245
|
|
|
246
|
-
:param str description: The human-readable description for the share.
|
|
247
|
-
:param str export_location_path: The export location path of the share. Available
|
|
246
|
+
:param _builtins.str description: The human-readable description for the share.
|
|
247
|
+
:param _builtins.str export_location_path: The export location path of the share. Available
|
|
248
248
|
since Manila API version 2.35.
|
|
249
|
-
:param bool is_public: The level of visibility for the share.
|
|
249
|
+
:param _builtins.bool is_public: The level of visibility for the share.
|
|
250
250
|
length.
|
|
251
|
-
:param Mapping[str, str] metadata: One or more metadata key and value pairs as a dictionary of
|
|
251
|
+
:param Mapping[str, _builtins.str] metadata: One or more metadata key and value pairs as a dictionary of
|
|
252
252
|
strings.
|
|
253
|
-
:param str name: The name of the share.
|
|
254
|
-
:param str region: The region in which to obtain the V2 Shared File System
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
:param str
|
|
253
|
+
:param _builtins.str name: The name of the share.
|
|
254
|
+
:param _builtins.str region: The region in which to obtain the V2 Shared File System
|
|
255
|
+
client. A Shared File System client is needed to read a share. If omitted,
|
|
256
|
+
the `region` argument of the provider is used.
|
|
257
|
+
:param _builtins.str share_network_id: The UUID of the share's share network.
|
|
258
|
+
:param _builtins.str snapshot_id: The UUID of the share's base snapshot.
|
|
259
|
+
:param _builtins.str status: A share status filter. A valid value is `creating`,
|
|
258
260
|
`error`, `available`, `deleting`, `error_deleting`, `manage_starting`,
|
|
259
261
|
`manage_error`, `unmanage_starting`, `unmanage_error`, `unmanaged`,
|
|
260
262
|
`extending`, `extending_error`, `shrinking`, `shrinking_error`, or
|
|
@@ -289,16 +291,16 @@ def get_share(description: Optional[str] = None,
|
|
|
289
291
|
size=pulumi.get(__ret__, 'size'),
|
|
290
292
|
snapshot_id=pulumi.get(__ret__, 'snapshot_id'),
|
|
291
293
|
status=pulumi.get(__ret__, 'status'))
|
|
292
|
-
def get_share_output(description: Optional[pulumi.Input[Optional[str]]] = None,
|
|
293
|
-
export_location_path: Optional[pulumi.Input[Optional[str]]] = None,
|
|
294
|
-
is_public: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
295
|
-
metadata: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
296
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
297
|
-
region: Optional[pulumi.Input[Optional[str]]] = None,
|
|
298
|
-
share_network_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
299
|
-
snapshot_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
300
|
-
status: Optional[pulumi.Input[Optional[str]]] = None,
|
|
301
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetShareResult]:
|
|
294
|
+
def get_share_output(description: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
295
|
+
export_location_path: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
296
|
+
is_public: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
297
|
+
metadata: Optional[pulumi.Input[Optional[Mapping[str, _builtins.str]]]] = None,
|
|
298
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
299
|
+
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
300
|
+
share_network_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
301
|
+
snapshot_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
302
|
+
status: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
303
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetShareResult]:
|
|
302
304
|
"""
|
|
303
305
|
Use this data source to get the ID of an available Shared File System share.
|
|
304
306
|
|
|
@@ -312,18 +314,20 @@ def get_share_output(description: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
312
314
|
```
|
|
313
315
|
|
|
314
316
|
|
|
315
|
-
:param str description: The human-readable description for the share.
|
|
316
|
-
:param str export_location_path: The export location path of the share. Available
|
|
317
|
+
:param _builtins.str description: The human-readable description for the share.
|
|
318
|
+
:param _builtins.str export_location_path: The export location path of the share. Available
|
|
317
319
|
since Manila API version 2.35.
|
|
318
|
-
:param bool is_public: The level of visibility for the share.
|
|
320
|
+
:param _builtins.bool is_public: The level of visibility for the share.
|
|
319
321
|
length.
|
|
320
|
-
:param Mapping[str, str] metadata: One or more metadata key and value pairs as a dictionary of
|
|
322
|
+
:param Mapping[str, _builtins.str] metadata: One or more metadata key and value pairs as a dictionary of
|
|
321
323
|
strings.
|
|
322
|
-
:param str name: The name of the share.
|
|
323
|
-
:param str region: The region in which to obtain the V2 Shared File System
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
:param str
|
|
324
|
+
:param _builtins.str name: The name of the share.
|
|
325
|
+
:param _builtins.str region: The region in which to obtain the V2 Shared File System
|
|
326
|
+
client. A Shared File System client is needed to read a share. If omitted,
|
|
327
|
+
the `region` argument of the provider is used.
|
|
328
|
+
:param _builtins.str share_network_id: The UUID of the share's share network.
|
|
329
|
+
:param _builtins.str snapshot_id: The UUID of the share's base snapshot.
|
|
330
|
+
:param _builtins.str status: A share status filter. A valid value is `creating`,
|
|
327
331
|
`error`, `available`, `deleting`, `error_deleting`, `manage_starting`,
|
|
328
332
|
`manage_error`, `unmanage_starting`, `unmanage_error`, `unmanaged`,
|
|
329
333
|
`extending`, `extending_error`, `shrinking`, `shrinking_error`, or
|
|
@@ -339,7 +343,7 @@ def get_share_output(description: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
339
343
|
__args__['shareNetworkId'] = share_network_id
|
|
340
344
|
__args__['snapshotId'] = snapshot_id
|
|
341
345
|
__args__['status'] = status
|
|
342
|
-
opts = pulumi.
|
|
346
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
343
347
|
__ret__ = pulumi.runtime.invoke_output('openstack:sharedfilesystem/getShare:getShare', __args__, opts=opts, typ=GetShareResult)
|
|
344
348
|
return __ret__.apply(lambda __response__: GetShareResult(
|
|
345
349
|
availability_zone=pulumi.get(__response__, 'availability_zone'),
|