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
|
|
@@ -33,15 +33,15 @@ MYPY = False
|
|
|
33
33
|
|
|
34
34
|
if not MYPY:
|
|
35
35
|
class ConfigurationConfigurationArgsDict(TypedDict):
|
|
36
|
-
name: pulumi.Input[str]
|
|
36
|
+
name: pulumi.Input[_builtins.str]
|
|
37
37
|
"""
|
|
38
38
|
Configuration parameter name. Changing this creates a new resource.
|
|
39
39
|
"""
|
|
40
|
-
value: pulumi.Input[str]
|
|
40
|
+
value: pulumi.Input[_builtins.str]
|
|
41
41
|
"""
|
|
42
42
|
Configuration parameter value. Changing this creates a new resource.
|
|
43
43
|
"""
|
|
44
|
-
string_type: NotRequired[pulumi.Input[bool]]
|
|
44
|
+
string_type: NotRequired[pulumi.Input[_builtins.bool]]
|
|
45
45
|
"""
|
|
46
46
|
Whether or not to store configuration parameter value as string. Changing this creates a new resource. See the below note for more information.
|
|
47
47
|
"""
|
|
@@ -51,63 +51,63 @@ elif False:
|
|
|
51
51
|
@pulumi.input_type
|
|
52
52
|
class ConfigurationConfigurationArgs:
|
|
53
53
|
def __init__(__self__, *,
|
|
54
|
-
name: pulumi.Input[str],
|
|
55
|
-
value: pulumi.Input[str],
|
|
56
|
-
string_type: Optional[pulumi.Input[bool]] = None):
|
|
54
|
+
name: pulumi.Input[_builtins.str],
|
|
55
|
+
value: pulumi.Input[_builtins.str],
|
|
56
|
+
string_type: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
57
57
|
"""
|
|
58
|
-
:param pulumi.Input[str] name: Configuration parameter name. Changing this creates a new resource.
|
|
59
|
-
:param pulumi.Input[str] value: Configuration parameter value. Changing this creates a new resource.
|
|
60
|
-
:param pulumi.Input[bool] string_type: Whether or not to store configuration parameter value as string. Changing this creates a new resource. See the below note for more information.
|
|
58
|
+
:param pulumi.Input[_builtins.str] name: Configuration parameter name. Changing this creates a new resource.
|
|
59
|
+
:param pulumi.Input[_builtins.str] value: Configuration parameter value. Changing this creates a new resource.
|
|
60
|
+
:param pulumi.Input[_builtins.bool] string_type: Whether or not to store configuration parameter value as string. Changing this creates a new resource. See the below note for more information.
|
|
61
61
|
"""
|
|
62
62
|
pulumi.set(__self__, "name", name)
|
|
63
63
|
pulumi.set(__self__, "value", value)
|
|
64
64
|
if string_type is not None:
|
|
65
65
|
pulumi.set(__self__, "string_type", string_type)
|
|
66
66
|
|
|
67
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
68
68
|
@pulumi.getter
|
|
69
|
-
def name(self) -> pulumi.Input[str]:
|
|
69
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
70
70
|
"""
|
|
71
71
|
Configuration parameter name. Changing this creates a new resource.
|
|
72
72
|
"""
|
|
73
73
|
return pulumi.get(self, "name")
|
|
74
74
|
|
|
75
75
|
@name.setter
|
|
76
|
-
def name(self, value: pulumi.Input[str]):
|
|
76
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
77
77
|
pulumi.set(self, "name", value)
|
|
78
78
|
|
|
79
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
80
80
|
@pulumi.getter
|
|
81
|
-
def value(self) -> pulumi.Input[str]:
|
|
81
|
+
def value(self) -> pulumi.Input[_builtins.str]:
|
|
82
82
|
"""
|
|
83
83
|
Configuration parameter value. Changing this creates a new resource.
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "value")
|
|
86
86
|
|
|
87
87
|
@value.setter
|
|
88
|
-
def value(self, value: pulumi.Input[str]):
|
|
88
|
+
def value(self, value: pulumi.Input[_builtins.str]):
|
|
89
89
|
pulumi.set(self, "value", value)
|
|
90
90
|
|
|
91
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
92
92
|
@pulumi.getter(name="stringType")
|
|
93
|
-
def string_type(self) -> Optional[pulumi.Input[bool]]:
|
|
93
|
+
def string_type(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94
94
|
"""
|
|
95
95
|
Whether or not to store configuration parameter value as string. Changing this creates a new resource. See the below note for more information.
|
|
96
96
|
"""
|
|
97
97
|
return pulumi.get(self, "string_type")
|
|
98
98
|
|
|
99
99
|
@string_type.setter
|
|
100
|
-
def string_type(self, value: Optional[pulumi.Input[bool]]):
|
|
100
|
+
def string_type(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
101
101
|
pulumi.set(self, "string_type", value)
|
|
102
102
|
|
|
103
103
|
|
|
104
104
|
if not MYPY:
|
|
105
105
|
class ConfigurationDatastoreArgsDict(TypedDict):
|
|
106
|
-
type: pulumi.Input[str]
|
|
106
|
+
type: pulumi.Input[_builtins.str]
|
|
107
107
|
"""
|
|
108
108
|
Database engine type to be used with this configuration. Changing this creates a new resource.
|
|
109
109
|
"""
|
|
110
|
-
version: pulumi.Input[str]
|
|
110
|
+
version: pulumi.Input[_builtins.str]
|
|
111
111
|
"""
|
|
112
112
|
Version of database engine type to be used with this configuration. Changing this creates a new resource.
|
|
113
113
|
"""
|
|
@@ -117,53 +117,53 @@ elif False:
|
|
|
117
117
|
@pulumi.input_type
|
|
118
118
|
class ConfigurationDatastoreArgs:
|
|
119
119
|
def __init__(__self__, *,
|
|
120
|
-
type: pulumi.Input[str],
|
|
121
|
-
version: pulumi.Input[str]):
|
|
120
|
+
type: pulumi.Input[_builtins.str],
|
|
121
|
+
version: pulumi.Input[_builtins.str]):
|
|
122
122
|
"""
|
|
123
|
-
:param pulumi.Input[str] type: Database engine type to be used with this configuration. Changing this creates a new resource.
|
|
124
|
-
:param pulumi.Input[str] version: Version of database engine type to be used with this configuration. Changing this creates a new resource.
|
|
123
|
+
:param pulumi.Input[_builtins.str] type: Database engine type to be used with this configuration. Changing this creates a new resource.
|
|
124
|
+
:param pulumi.Input[_builtins.str] version: Version of database engine type to be used with this configuration. Changing this creates a new resource.
|
|
125
125
|
"""
|
|
126
126
|
pulumi.set(__self__, "type", type)
|
|
127
127
|
pulumi.set(__self__, "version", version)
|
|
128
128
|
|
|
129
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
130
130
|
@pulumi.getter
|
|
131
|
-
def type(self) -> pulumi.Input[str]:
|
|
131
|
+
def type(self) -> pulumi.Input[_builtins.str]:
|
|
132
132
|
"""
|
|
133
133
|
Database engine type to be used with this configuration. Changing this creates a new resource.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "type")
|
|
136
136
|
|
|
137
137
|
@type.setter
|
|
138
|
-
def type(self, value: pulumi.Input[str]):
|
|
138
|
+
def type(self, value: pulumi.Input[_builtins.str]):
|
|
139
139
|
pulumi.set(self, "type", value)
|
|
140
140
|
|
|
141
|
-
@property
|
|
141
|
+
@_builtins.property
|
|
142
142
|
@pulumi.getter
|
|
143
|
-
def version(self) -> pulumi.Input[str]:
|
|
143
|
+
def version(self) -> pulumi.Input[_builtins.str]:
|
|
144
144
|
"""
|
|
145
145
|
Version of database engine type to be used with this configuration. Changing this creates a new resource.
|
|
146
146
|
"""
|
|
147
147
|
return pulumi.get(self, "version")
|
|
148
148
|
|
|
149
149
|
@version.setter
|
|
150
|
-
def version(self, value: pulumi.Input[str]):
|
|
150
|
+
def version(self, value: pulumi.Input[_builtins.str]):
|
|
151
151
|
pulumi.set(self, "version", value)
|
|
152
152
|
|
|
153
153
|
|
|
154
154
|
if not MYPY:
|
|
155
155
|
class InstanceDatabaseArgsDict(TypedDict):
|
|
156
|
-
name: pulumi.Input[str]
|
|
156
|
+
name: pulumi.Input[_builtins.str]
|
|
157
157
|
"""
|
|
158
158
|
Database to be created on new instance. Changing this creates a
|
|
159
159
|
new instance.
|
|
160
160
|
"""
|
|
161
|
-
charset: NotRequired[pulumi.Input[str]]
|
|
161
|
+
charset: NotRequired[pulumi.Input[_builtins.str]]
|
|
162
162
|
"""
|
|
163
163
|
Database character set. Changing this creates a
|
|
164
164
|
new instance.
|
|
165
165
|
"""
|
|
166
|
-
collate: NotRequired[pulumi.Input[str]]
|
|
166
|
+
collate: NotRequired[pulumi.Input[_builtins.str]]
|
|
167
167
|
"""
|
|
168
168
|
Database collation. Changing this creates a new instance.
|
|
169
169
|
"""
|
|
@@ -173,15 +173,15 @@ elif False:
|
|
|
173
173
|
@pulumi.input_type
|
|
174
174
|
class InstanceDatabaseArgs:
|
|
175
175
|
def __init__(__self__, *,
|
|
176
|
-
name: pulumi.Input[str],
|
|
177
|
-
charset: Optional[pulumi.Input[str]] = None,
|
|
178
|
-
collate: Optional[pulumi.Input[str]] = None):
|
|
176
|
+
name: pulumi.Input[_builtins.str],
|
|
177
|
+
charset: Optional[pulumi.Input[_builtins.str]] = None,
|
|
178
|
+
collate: Optional[pulumi.Input[_builtins.str]] = None):
|
|
179
179
|
"""
|
|
180
|
-
:param pulumi.Input[str] name: Database to be created on new instance. Changing this creates a
|
|
180
|
+
:param pulumi.Input[_builtins.str] name: Database to be created on new instance. Changing this creates a
|
|
181
181
|
new instance.
|
|
182
|
-
:param pulumi.Input[str] charset: Database character set. Changing this creates a
|
|
182
|
+
:param pulumi.Input[_builtins.str] charset: Database character set. Changing this creates a
|
|
183
183
|
new instance.
|
|
184
|
-
:param pulumi.Input[str] collate: Database collation. Changing this creates a new instance.
|
|
184
|
+
:param pulumi.Input[_builtins.str] collate: Database collation. Changing this creates a new instance.
|
|
185
185
|
"""
|
|
186
186
|
pulumi.set(__self__, "name", name)
|
|
187
187
|
if charset is not None:
|
|
@@ -189,9 +189,9 @@ class InstanceDatabaseArgs:
|
|
|
189
189
|
if collate is not None:
|
|
190
190
|
pulumi.set(__self__, "collate", collate)
|
|
191
191
|
|
|
192
|
-
@property
|
|
192
|
+
@_builtins.property
|
|
193
193
|
@pulumi.getter
|
|
194
|
-
def name(self) -> pulumi.Input[str]:
|
|
194
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
195
195
|
"""
|
|
196
196
|
Database to be created on new instance. Changing this creates a
|
|
197
197
|
new instance.
|
|
@@ -199,12 +199,12 @@ class InstanceDatabaseArgs:
|
|
|
199
199
|
return pulumi.get(self, "name")
|
|
200
200
|
|
|
201
201
|
@name.setter
|
|
202
|
-
def name(self, value: pulumi.Input[str]):
|
|
202
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
203
203
|
pulumi.set(self, "name", value)
|
|
204
204
|
|
|
205
|
-
@property
|
|
205
|
+
@_builtins.property
|
|
206
206
|
@pulumi.getter
|
|
207
|
-
def charset(self) -> Optional[pulumi.Input[str]]:
|
|
207
|
+
def charset(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
208
208
|
"""
|
|
209
209
|
Database character set. Changing this creates a
|
|
210
210
|
new instance.
|
|
@@ -212,30 +212,30 @@ class InstanceDatabaseArgs:
|
|
|
212
212
|
return pulumi.get(self, "charset")
|
|
213
213
|
|
|
214
214
|
@charset.setter
|
|
215
|
-
def charset(self, value: Optional[pulumi.Input[str]]):
|
|
215
|
+
def charset(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
216
216
|
pulumi.set(self, "charset", value)
|
|
217
217
|
|
|
218
|
-
@property
|
|
218
|
+
@_builtins.property
|
|
219
219
|
@pulumi.getter
|
|
220
|
-
def collate(self) -> Optional[pulumi.Input[str]]:
|
|
220
|
+
def collate(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
221
221
|
"""
|
|
222
222
|
Database collation. Changing this creates a new instance.
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "collate")
|
|
225
225
|
|
|
226
226
|
@collate.setter
|
|
227
|
-
def collate(self, value: Optional[pulumi.Input[str]]):
|
|
227
|
+
def collate(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
228
228
|
pulumi.set(self, "collate", value)
|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
if not MYPY:
|
|
232
232
|
class InstanceDatastoreArgsDict(TypedDict):
|
|
233
|
-
type: pulumi.Input[str]
|
|
233
|
+
type: pulumi.Input[_builtins.str]
|
|
234
234
|
"""
|
|
235
235
|
Database engine type to be used in new instance. Changing this
|
|
236
236
|
creates a new instance.
|
|
237
237
|
"""
|
|
238
|
-
version: pulumi.Input[str]
|
|
238
|
+
version: pulumi.Input[_builtins.str]
|
|
239
239
|
"""
|
|
240
240
|
Version of database engine type to be used in new instance.
|
|
241
241
|
Changing this creates a new instance.
|
|
@@ -246,20 +246,20 @@ elif False:
|
|
|
246
246
|
@pulumi.input_type
|
|
247
247
|
class InstanceDatastoreArgs:
|
|
248
248
|
def __init__(__self__, *,
|
|
249
|
-
type: pulumi.Input[str],
|
|
250
|
-
version: pulumi.Input[str]):
|
|
249
|
+
type: pulumi.Input[_builtins.str],
|
|
250
|
+
version: pulumi.Input[_builtins.str]):
|
|
251
251
|
"""
|
|
252
|
-
:param pulumi.Input[str] type: Database engine type to be used in new instance. Changing this
|
|
252
|
+
:param pulumi.Input[_builtins.str] type: Database engine type to be used in new instance. Changing this
|
|
253
253
|
creates a new instance.
|
|
254
|
-
:param pulumi.Input[str] version: Version of database engine type to be used in new instance.
|
|
254
|
+
:param pulumi.Input[_builtins.str] version: Version of database engine type to be used in new instance.
|
|
255
255
|
Changing this creates a new instance.
|
|
256
256
|
"""
|
|
257
257
|
pulumi.set(__self__, "type", type)
|
|
258
258
|
pulumi.set(__self__, "version", version)
|
|
259
259
|
|
|
260
|
-
@property
|
|
260
|
+
@_builtins.property
|
|
261
261
|
@pulumi.getter
|
|
262
|
-
def type(self) -> pulumi.Input[str]:
|
|
262
|
+
def type(self) -> pulumi.Input[_builtins.str]:
|
|
263
263
|
"""
|
|
264
264
|
Database engine type to be used in new instance. Changing this
|
|
265
265
|
creates a new instance.
|
|
@@ -267,12 +267,12 @@ class InstanceDatastoreArgs:
|
|
|
267
267
|
return pulumi.get(self, "type")
|
|
268
268
|
|
|
269
269
|
@type.setter
|
|
270
|
-
def type(self, value: pulumi.Input[str]):
|
|
270
|
+
def type(self, value: pulumi.Input[_builtins.str]):
|
|
271
271
|
pulumi.set(self, "type", value)
|
|
272
272
|
|
|
273
|
-
@property
|
|
273
|
+
@_builtins.property
|
|
274
274
|
@pulumi.getter
|
|
275
|
-
def version(self) -> pulumi.Input[str]:
|
|
275
|
+
def version(self) -> pulumi.Input[_builtins.str]:
|
|
276
276
|
"""
|
|
277
277
|
Version of database engine type to be used in new instance.
|
|
278
278
|
Changing this creates a new instance.
|
|
@@ -280,28 +280,28 @@ class InstanceDatastoreArgs:
|
|
|
280
280
|
return pulumi.get(self, "version")
|
|
281
281
|
|
|
282
282
|
@version.setter
|
|
283
|
-
def version(self, value: pulumi.Input[str]):
|
|
283
|
+
def version(self, value: pulumi.Input[_builtins.str]):
|
|
284
284
|
pulumi.set(self, "version", value)
|
|
285
285
|
|
|
286
286
|
|
|
287
287
|
if not MYPY:
|
|
288
288
|
class InstanceNetworkArgsDict(TypedDict):
|
|
289
|
-
fixed_ip_v4: NotRequired[pulumi.Input[str]]
|
|
289
|
+
fixed_ip_v4: NotRequired[pulumi.Input[_builtins.str]]
|
|
290
290
|
"""
|
|
291
291
|
Specifies a fixed IPv4 address to be used on this
|
|
292
292
|
network. Changing this creates a new instance.
|
|
293
293
|
"""
|
|
294
|
-
fixed_ip_v6: NotRequired[pulumi.Input[str]]
|
|
294
|
+
fixed_ip_v6: NotRequired[pulumi.Input[_builtins.str]]
|
|
295
295
|
"""
|
|
296
296
|
Specifies a fixed IPv6 address to be used on this
|
|
297
297
|
network. Changing this creates a new instance.
|
|
298
298
|
"""
|
|
299
|
-
port: NotRequired[pulumi.Input[str]]
|
|
299
|
+
port: NotRequired[pulumi.Input[_builtins.str]]
|
|
300
300
|
"""
|
|
301
301
|
The port UUID of a
|
|
302
302
|
network to attach to the instance. Changing this creates a new instance.
|
|
303
303
|
"""
|
|
304
|
-
uuid: NotRequired[pulumi.Input[str]]
|
|
304
|
+
uuid: NotRequired[pulumi.Input[_builtins.str]]
|
|
305
305
|
"""
|
|
306
306
|
The network UUID to
|
|
307
307
|
attach to the instance. Changing this creates a new instance.
|
|
@@ -312,18 +312,18 @@ elif False:
|
|
|
312
312
|
@pulumi.input_type
|
|
313
313
|
class InstanceNetworkArgs:
|
|
314
314
|
def __init__(__self__, *,
|
|
315
|
-
fixed_ip_v4: Optional[pulumi.Input[str]] = None,
|
|
316
|
-
fixed_ip_v6: Optional[pulumi.Input[str]] = None,
|
|
317
|
-
port: Optional[pulumi.Input[str]] = None,
|
|
318
|
-
uuid: Optional[pulumi.Input[str]] = None):
|
|
315
|
+
fixed_ip_v4: Optional[pulumi.Input[_builtins.str]] = None,
|
|
316
|
+
fixed_ip_v6: Optional[pulumi.Input[_builtins.str]] = None,
|
|
317
|
+
port: Optional[pulumi.Input[_builtins.str]] = None,
|
|
318
|
+
uuid: Optional[pulumi.Input[_builtins.str]] = None):
|
|
319
319
|
"""
|
|
320
|
-
:param pulumi.Input[str] fixed_ip_v4: Specifies a fixed IPv4 address to be used on this
|
|
320
|
+
:param pulumi.Input[_builtins.str] fixed_ip_v4: Specifies a fixed IPv4 address to be used on this
|
|
321
321
|
network. Changing this creates a new instance.
|
|
322
|
-
:param pulumi.Input[str] fixed_ip_v6: Specifies a fixed IPv6 address to be used on this
|
|
322
|
+
:param pulumi.Input[_builtins.str] fixed_ip_v6: Specifies a fixed IPv6 address to be used on this
|
|
323
323
|
network. Changing this creates a new instance.
|
|
324
|
-
:param pulumi.Input[str] port: The port UUID of a
|
|
324
|
+
:param pulumi.Input[_builtins.str] port: The port UUID of a
|
|
325
325
|
network to attach to the instance. Changing this creates a new instance.
|
|
326
|
-
:param pulumi.Input[str] uuid: The network UUID to
|
|
326
|
+
:param pulumi.Input[_builtins.str] uuid: The network UUID to
|
|
327
327
|
attach to the instance. Changing this creates a new instance.
|
|
328
328
|
"""
|
|
329
329
|
if fixed_ip_v4 is not None:
|
|
@@ -335,9 +335,9 @@ class InstanceNetworkArgs:
|
|
|
335
335
|
if uuid is not None:
|
|
336
336
|
pulumi.set(__self__, "uuid", uuid)
|
|
337
337
|
|
|
338
|
-
@property
|
|
338
|
+
@_builtins.property
|
|
339
339
|
@pulumi.getter(name="fixedIpV4")
|
|
340
|
-
def fixed_ip_v4(self) -> Optional[pulumi.Input[str]]:
|
|
340
|
+
def fixed_ip_v4(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
341
341
|
"""
|
|
342
342
|
Specifies a fixed IPv4 address to be used on this
|
|
343
343
|
network. Changing this creates a new instance.
|
|
@@ -345,12 +345,12 @@ class InstanceNetworkArgs:
|
|
|
345
345
|
return pulumi.get(self, "fixed_ip_v4")
|
|
346
346
|
|
|
347
347
|
@fixed_ip_v4.setter
|
|
348
|
-
def fixed_ip_v4(self, value: Optional[pulumi.Input[str]]):
|
|
348
|
+
def fixed_ip_v4(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
349
349
|
pulumi.set(self, "fixed_ip_v4", value)
|
|
350
350
|
|
|
351
|
-
@property
|
|
351
|
+
@_builtins.property
|
|
352
352
|
@pulumi.getter(name="fixedIpV6")
|
|
353
|
-
def fixed_ip_v6(self) -> Optional[pulumi.Input[str]]:
|
|
353
|
+
def fixed_ip_v6(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
354
354
|
"""
|
|
355
355
|
Specifies a fixed IPv6 address to be used on this
|
|
356
356
|
network. Changing this creates a new instance.
|
|
@@ -358,12 +358,12 @@ class InstanceNetworkArgs:
|
|
|
358
358
|
return pulumi.get(self, "fixed_ip_v6")
|
|
359
359
|
|
|
360
360
|
@fixed_ip_v6.setter
|
|
361
|
-
def fixed_ip_v6(self, value: Optional[pulumi.Input[str]]):
|
|
361
|
+
def fixed_ip_v6(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
362
362
|
pulumi.set(self, "fixed_ip_v6", value)
|
|
363
363
|
|
|
364
|
-
@property
|
|
364
|
+
@_builtins.property
|
|
365
365
|
@pulumi.getter
|
|
366
|
-
def port(self) -> Optional[pulumi.Input[str]]:
|
|
366
|
+
def port(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
367
367
|
"""
|
|
368
368
|
The port UUID of a
|
|
369
369
|
network to attach to the instance. Changing this creates a new instance.
|
|
@@ -371,12 +371,12 @@ class InstanceNetworkArgs:
|
|
|
371
371
|
return pulumi.get(self, "port")
|
|
372
372
|
|
|
373
373
|
@port.setter
|
|
374
|
-
def port(self, value: Optional[pulumi.Input[str]]):
|
|
374
|
+
def port(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
375
375
|
pulumi.set(self, "port", value)
|
|
376
376
|
|
|
377
|
-
@property
|
|
377
|
+
@_builtins.property
|
|
378
378
|
@pulumi.getter
|
|
379
|
-
def uuid(self) -> Optional[pulumi.Input[str]]:
|
|
379
|
+
def uuid(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
380
380
|
"""
|
|
381
381
|
The network UUID to
|
|
382
382
|
attach to the instance. Changing this creates a new instance.
|
|
@@ -384,28 +384,28 @@ class InstanceNetworkArgs:
|
|
|
384
384
|
return pulumi.get(self, "uuid")
|
|
385
385
|
|
|
386
386
|
@uuid.setter
|
|
387
|
-
def uuid(self, value: Optional[pulumi.Input[str]]):
|
|
387
|
+
def uuid(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
388
388
|
pulumi.set(self, "uuid", value)
|
|
389
389
|
|
|
390
390
|
|
|
391
391
|
if not MYPY:
|
|
392
392
|
class InstanceUserArgsDict(TypedDict):
|
|
393
|
-
name: pulumi.Input[str]
|
|
393
|
+
name: pulumi.Input[_builtins.str]
|
|
394
394
|
"""
|
|
395
395
|
Username to be created on new instance. Changing this creates a
|
|
396
396
|
new instance.
|
|
397
397
|
"""
|
|
398
|
-
databases: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
398
|
+
databases: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
399
399
|
"""
|
|
400
400
|
A list of databases that user will have access to. If not specified,
|
|
401
401
|
user has access to all databases on th einstance. Changing this creates a new instance.
|
|
402
402
|
"""
|
|
403
|
-
host: NotRequired[pulumi.Input[str]]
|
|
403
|
+
host: NotRequired[pulumi.Input[_builtins.str]]
|
|
404
404
|
"""
|
|
405
405
|
An ip address or % sign indicating what ip addresses can connect with
|
|
406
406
|
this user credentials. Changing this creates a new instance.
|
|
407
407
|
"""
|
|
408
|
-
password: NotRequired[pulumi.Input[str]]
|
|
408
|
+
password: NotRequired[pulumi.Input[_builtins.str]]
|
|
409
409
|
"""
|
|
410
410
|
User's password. Changing this creates a
|
|
411
411
|
new instance.
|
|
@@ -416,18 +416,18 @@ elif False:
|
|
|
416
416
|
@pulumi.input_type
|
|
417
417
|
class InstanceUserArgs:
|
|
418
418
|
def __init__(__self__, *,
|
|
419
|
-
name: pulumi.Input[str],
|
|
420
|
-
databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
421
|
-
host: Optional[pulumi.Input[str]] = None,
|
|
422
|
-
password: Optional[pulumi.Input[str]] = None):
|
|
419
|
+
name: pulumi.Input[_builtins.str],
|
|
420
|
+
databases: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
421
|
+
host: Optional[pulumi.Input[_builtins.str]] = None,
|
|
422
|
+
password: Optional[pulumi.Input[_builtins.str]] = None):
|
|
423
423
|
"""
|
|
424
|
-
:param pulumi.Input[str] name: Username to be created on new instance. Changing this creates a
|
|
424
|
+
:param pulumi.Input[_builtins.str] name: Username to be created on new instance. Changing this creates a
|
|
425
425
|
new instance.
|
|
426
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] databases: A list of databases that user will have access to. If not specified,
|
|
426
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] databases: A list of databases that user will have access to. If not specified,
|
|
427
427
|
user has access to all databases on th einstance. Changing this creates a new instance.
|
|
428
|
-
:param pulumi.Input[str] host: An ip address or % sign indicating what ip addresses can connect with
|
|
428
|
+
:param pulumi.Input[_builtins.str] host: An ip address or % sign indicating what ip addresses can connect with
|
|
429
429
|
this user credentials. Changing this creates a new instance.
|
|
430
|
-
:param pulumi.Input[str] password: User's password. Changing this creates a
|
|
430
|
+
:param pulumi.Input[_builtins.str] password: User's password. Changing this creates a
|
|
431
431
|
new instance.
|
|
432
432
|
"""
|
|
433
433
|
pulumi.set(__self__, "name", name)
|
|
@@ -438,9 +438,9 @@ class InstanceUserArgs:
|
|
|
438
438
|
if password is not None:
|
|
439
439
|
pulumi.set(__self__, "password", password)
|
|
440
440
|
|
|
441
|
-
@property
|
|
441
|
+
@_builtins.property
|
|
442
442
|
@pulumi.getter
|
|
443
|
-
def name(self) -> pulumi.Input[str]:
|
|
443
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
444
444
|
"""
|
|
445
445
|
Username to be created on new instance. Changing this creates a
|
|
446
446
|
new instance.
|
|
@@ -448,12 +448,12 @@ class InstanceUserArgs:
|
|
|
448
448
|
return pulumi.get(self, "name")
|
|
449
449
|
|
|
450
450
|
@name.setter
|
|
451
|
-
def name(self, value: pulumi.Input[str]):
|
|
451
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
452
452
|
pulumi.set(self, "name", value)
|
|
453
453
|
|
|
454
|
-
@property
|
|
454
|
+
@_builtins.property
|
|
455
455
|
@pulumi.getter
|
|
456
|
-
def databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
456
|
+
def databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
457
457
|
"""
|
|
458
458
|
A list of databases that user will have access to. If not specified,
|
|
459
459
|
user has access to all databases on th einstance. Changing this creates a new instance.
|
|
@@ -461,12 +461,12 @@ class InstanceUserArgs:
|
|
|
461
461
|
return pulumi.get(self, "databases")
|
|
462
462
|
|
|
463
463
|
@databases.setter
|
|
464
|
-
def databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
464
|
+
def databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
465
465
|
pulumi.set(self, "databases", value)
|
|
466
466
|
|
|
467
|
-
@property
|
|
467
|
+
@_builtins.property
|
|
468
468
|
@pulumi.getter
|
|
469
|
-
def host(self) -> Optional[pulumi.Input[str]]:
|
|
469
|
+
def host(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
470
470
|
"""
|
|
471
471
|
An ip address or % sign indicating what ip addresses can connect with
|
|
472
472
|
this user credentials. Changing this creates a new instance.
|
|
@@ -474,12 +474,12 @@ class InstanceUserArgs:
|
|
|
474
474
|
return pulumi.get(self, "host")
|
|
475
475
|
|
|
476
476
|
@host.setter
|
|
477
|
-
def host(self, value: Optional[pulumi.Input[str]]):
|
|
477
|
+
def host(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
478
478
|
pulumi.set(self, "host", value)
|
|
479
479
|
|
|
480
|
-
@property
|
|
480
|
+
@_builtins.property
|
|
481
481
|
@pulumi.getter
|
|
482
|
-
def password(self) -> Optional[pulumi.Input[str]]:
|
|
482
|
+
def password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
483
483
|
"""
|
|
484
484
|
User's password. Changing this creates a
|
|
485
485
|
new instance.
|
|
@@ -487,7 +487,7 @@ class InstanceUserArgs:
|
|
|
487
487
|
return pulumi.get(self, "password")
|
|
488
488
|
|
|
489
489
|
@password.setter
|
|
490
|
-
def password(self, value: Optional[pulumi.Input[str]]):
|
|
490
|
+
def password(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
491
491
|
pulumi.set(self, "password", value)
|
|
492
492
|
|
|
493
493
|
|