pulumi-linode 5.2.0a1753337355__py3-none-any.whl → 5.2.0a1753397983__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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
- pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
- pulumi_linode-5.2.0a1753337355.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -47,46 +46,46 @@ class GetAccountLoginResult:
|
|
|
47
46
|
raise TypeError("Expected argument 'username' to be a str")
|
|
48
47
|
pulumi.set(__self__, "username", username)
|
|
49
48
|
|
|
50
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
51
50
|
@pulumi.getter
|
|
52
|
-
def datetime(self) ->
|
|
51
|
+
def datetime(self) -> _builtins.str:
|
|
53
52
|
"""
|
|
54
53
|
When the login was initiated.
|
|
55
54
|
"""
|
|
56
55
|
return pulumi.get(self, "datetime")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
|
-
def id(self) ->
|
|
59
|
+
def id(self) -> _builtins.int:
|
|
61
60
|
"""
|
|
62
61
|
The unique ID of this login object.
|
|
63
62
|
"""
|
|
64
63
|
return pulumi.get(self, "id")
|
|
65
64
|
|
|
66
|
-
@property
|
|
65
|
+
@_builtins.property
|
|
67
66
|
@pulumi.getter
|
|
68
|
-
def ip(self) ->
|
|
67
|
+
def ip(self) -> _builtins.str:
|
|
69
68
|
"""
|
|
70
69
|
The remote IP address that requested the login.
|
|
71
70
|
"""
|
|
72
71
|
return pulumi.get(self, "ip")
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def restricted(self) ->
|
|
75
|
+
def restricted(self) -> _builtins.bool:
|
|
77
76
|
"""
|
|
78
77
|
True if the User that was logged into was a restricted User, false otherwise.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "restricted")
|
|
81
80
|
|
|
82
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
83
82
|
@pulumi.getter
|
|
84
|
-
def status(self) ->
|
|
83
|
+
def status(self) -> _builtins.str:
|
|
85
84
|
return pulumi.get(self, "status")
|
|
86
85
|
|
|
87
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
88
87
|
@pulumi.getter
|
|
89
|
-
def username(self) ->
|
|
88
|
+
def username(self) -> _builtins.str:
|
|
90
89
|
"""
|
|
91
90
|
The username of the User that was logged into.
|
|
92
91
|
"""
|
|
@@ -107,7 +106,7 @@ class AwaitableGetAccountLoginResult(GetAccountLoginResult):
|
|
|
107
106
|
username=self.username)
|
|
108
107
|
|
|
109
108
|
|
|
110
|
-
def get_account_login(id: Optional[
|
|
109
|
+
def get_account_login(id: Optional[_builtins.int] = None,
|
|
111
110
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountLoginResult:
|
|
112
111
|
"""
|
|
113
112
|
Provides details about a specific Linode account login.
|
|
@@ -125,7 +124,7 @@ def get_account_login(id: Optional[builtins.int] = None,
|
|
|
125
124
|
```
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
:param
|
|
127
|
+
:param _builtins.int id: The unique ID of this login object.
|
|
129
128
|
"""
|
|
130
129
|
__args__ = dict()
|
|
131
130
|
__args__['id'] = id
|
|
@@ -139,7 +138,7 @@ def get_account_login(id: Optional[builtins.int] = None,
|
|
|
139
138
|
restricted=pulumi.get(__ret__, 'restricted'),
|
|
140
139
|
status=pulumi.get(__ret__, 'status'),
|
|
141
140
|
username=pulumi.get(__ret__, 'username'))
|
|
142
|
-
def get_account_login_output(id: Optional[pulumi.Input[
|
|
141
|
+
def get_account_login_output(id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
143
142
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountLoginResult]:
|
|
144
143
|
"""
|
|
145
144
|
Provides details about a specific Linode account login.
|
|
@@ -157,7 +156,7 @@ def get_account_login_output(id: Optional[pulumi.Input[builtins.int]] = None,
|
|
|
157
156
|
```
|
|
158
157
|
|
|
159
158
|
|
|
160
|
-
:param
|
|
159
|
+
:param _builtins.int id: The unique ID of this login object.
|
|
161
160
|
"""
|
|
162
161
|
__args__ = dict()
|
|
163
162
|
__args__['id'] = id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -40,20 +39,20 @@ class GetAccountLoginsResult:
|
|
|
40
39
|
raise TypeError("Expected argument 'logins' to be a list")
|
|
41
40
|
pulumi.set(__self__, "logins", logins)
|
|
42
41
|
|
|
43
|
-
@property
|
|
42
|
+
@_builtins.property
|
|
44
43
|
@pulumi.getter
|
|
45
44
|
def filters(self) -> Optional[Sequence['outputs.GetAccountLoginsFilterResult']]:
|
|
46
45
|
return pulumi.get(self, "filters")
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter
|
|
50
|
-
def id(self) ->
|
|
49
|
+
def id(self) -> _builtins.str:
|
|
51
50
|
"""
|
|
52
51
|
The unique ID of this login object.
|
|
53
52
|
"""
|
|
54
53
|
return pulumi.get(self, "id")
|
|
55
54
|
|
|
56
|
-
@property
|
|
55
|
+
@_builtins.property
|
|
57
56
|
@pulumi.getter
|
|
58
57
|
def logins(self) -> Optional[Sequence['outputs.GetAccountLoginsLoginResult']]:
|
|
59
58
|
return pulumi.get(self, "logins")
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -47,46 +46,46 @@ class GetAccountSettingsResult:
|
|
|
47
46
|
raise TypeError("Expected argument 'object_storage' to be a str")
|
|
48
47
|
pulumi.set(__self__, "object_storage", object_storage)
|
|
49
48
|
|
|
50
|
-
@property
|
|
49
|
+
@_builtins.property
|
|
51
50
|
@pulumi.getter(name="backupsEnabled")
|
|
52
|
-
def backups_enabled(self) ->
|
|
51
|
+
def backups_enabled(self) -> _builtins.bool:
|
|
53
52
|
"""
|
|
54
53
|
Account-wide backups default.
|
|
55
54
|
"""
|
|
56
55
|
return pulumi.get(self, "backups_enabled")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
|
-
def id(self) ->
|
|
59
|
+
def id(self) -> _builtins.str:
|
|
61
60
|
return pulumi.get(self, "id")
|
|
62
61
|
|
|
63
|
-
@property
|
|
62
|
+
@_builtins.property
|
|
64
63
|
@pulumi.getter(name="longviewSubscription")
|
|
65
|
-
def longview_subscription(self) ->
|
|
64
|
+
def longview_subscription(self) -> _builtins.str:
|
|
66
65
|
"""
|
|
67
66
|
The Longview Pro tier you are currently subscribed to.
|
|
68
67
|
"""
|
|
69
68
|
return pulumi.get(self, "longview_subscription")
|
|
70
69
|
|
|
71
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
72
71
|
@pulumi.getter
|
|
73
|
-
def managed(self) ->
|
|
72
|
+
def managed(self) -> _builtins.bool:
|
|
74
73
|
"""
|
|
75
74
|
Enables monitoring for connectivity, response, and total request time.
|
|
76
75
|
"""
|
|
77
76
|
return pulumi.get(self, "managed")
|
|
78
77
|
|
|
79
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
80
79
|
@pulumi.getter(name="networkHelper")
|
|
81
|
-
def network_helper(self) ->
|
|
80
|
+
def network_helper(self) -> _builtins.bool:
|
|
82
81
|
"""
|
|
83
82
|
Enables network helper across all users by default for new Linodes and Linode Configs.
|
|
84
83
|
"""
|
|
85
84
|
return pulumi.get(self, "network_helper")
|
|
86
85
|
|
|
87
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
88
87
|
@pulumi.getter(name="objectStorage")
|
|
89
|
-
def object_storage(self) ->
|
|
88
|
+
def object_storage(self) -> _builtins.str:
|
|
90
89
|
"""
|
|
91
90
|
A string describing the status of this account’s Object Storage service enrollment.
|
|
92
91
|
"""
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -77,123 +76,123 @@ class GetChildAccountResult:
|
|
|
77
76
|
raise TypeError("Expected argument 'zip' to be a str")
|
|
78
77
|
pulumi.set(__self__, "zip", zip)
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter(name="activeSince")
|
|
82
|
-
def active_since(self) ->
|
|
81
|
+
def active_since(self) -> _builtins.str:
|
|
83
82
|
"""
|
|
84
83
|
When this account was first activated.
|
|
85
84
|
"""
|
|
86
85
|
return pulumi.get(self, "active_since")
|
|
87
86
|
|
|
88
|
-
@property
|
|
87
|
+
@_builtins.property
|
|
89
88
|
@pulumi.getter
|
|
90
|
-
def address1(self) ->
|
|
89
|
+
def address1(self) -> _builtins.str:
|
|
91
90
|
"""
|
|
92
91
|
First line of this Account's billing address.
|
|
93
92
|
"""
|
|
94
93
|
return pulumi.get(self, "address1")
|
|
95
94
|
|
|
96
|
-
@property
|
|
95
|
+
@_builtins.property
|
|
97
96
|
@pulumi.getter
|
|
98
|
-
def address2(self) ->
|
|
97
|
+
def address2(self) -> _builtins.str:
|
|
99
98
|
"""
|
|
100
99
|
Second line of this Account's billing address.
|
|
101
100
|
"""
|
|
102
101
|
return pulumi.get(self, "address2")
|
|
103
102
|
|
|
104
|
-
@property
|
|
103
|
+
@_builtins.property
|
|
105
104
|
@pulumi.getter
|
|
106
|
-
def balance(self) ->
|
|
105
|
+
def balance(self) -> _builtins.float:
|
|
107
106
|
"""
|
|
108
107
|
This Account's balance, in US dollars.
|
|
109
108
|
"""
|
|
110
109
|
return pulumi.get(self, "balance")
|
|
111
110
|
|
|
112
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
113
112
|
@pulumi.getter
|
|
114
|
-
def capabilities(self) -> Sequence[
|
|
113
|
+
def capabilities(self) -> Sequence[_builtins.str]:
|
|
115
114
|
"""
|
|
116
115
|
A set containing all the capabilities of this Account.
|
|
117
116
|
"""
|
|
118
117
|
return pulumi.get(self, "capabilities")
|
|
119
118
|
|
|
120
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
121
120
|
@pulumi.getter
|
|
122
|
-
def city(self) ->
|
|
121
|
+
def city(self) -> _builtins.str:
|
|
123
122
|
"""
|
|
124
123
|
The city for this Account's billing address.
|
|
125
124
|
"""
|
|
126
125
|
return pulumi.get(self, "city")
|
|
127
126
|
|
|
128
|
-
@property
|
|
127
|
+
@_builtins.property
|
|
129
128
|
@pulumi.getter
|
|
130
|
-
def company(self) ->
|
|
129
|
+
def company(self) -> _builtins.str:
|
|
131
130
|
"""
|
|
132
131
|
The company name associated with this Account.
|
|
133
132
|
"""
|
|
134
133
|
return pulumi.get(self, "company")
|
|
135
134
|
|
|
136
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
137
136
|
@pulumi.getter
|
|
138
|
-
def country(self) ->
|
|
137
|
+
def country(self) -> _builtins.str:
|
|
139
138
|
"""
|
|
140
139
|
The two-letter country code of this Account's billing address.
|
|
141
140
|
"""
|
|
142
141
|
return pulumi.get(self, "country")
|
|
143
142
|
|
|
144
|
-
@property
|
|
143
|
+
@_builtins.property
|
|
145
144
|
@pulumi.getter
|
|
146
|
-
def email(self) ->
|
|
145
|
+
def email(self) -> _builtins.str:
|
|
147
146
|
"""
|
|
148
147
|
The email address for this Account, for account management communications, and may be used for other communications as configured.
|
|
149
148
|
"""
|
|
150
149
|
return pulumi.get(self, "email")
|
|
151
150
|
|
|
152
|
-
@property
|
|
151
|
+
@_builtins.property
|
|
153
152
|
@pulumi.getter
|
|
154
|
-
def euuid(self) ->
|
|
153
|
+
def euuid(self) -> _builtins.str:
|
|
155
154
|
return pulumi.get(self, "euuid")
|
|
156
155
|
|
|
157
|
-
@property
|
|
156
|
+
@_builtins.property
|
|
158
157
|
@pulumi.getter(name="firstName")
|
|
159
|
-
def first_name(self) ->
|
|
158
|
+
def first_name(self) -> _builtins.str:
|
|
160
159
|
"""
|
|
161
160
|
The first name of the person associated with this Account.
|
|
162
161
|
"""
|
|
163
162
|
return pulumi.get(self, "first_name")
|
|
164
163
|
|
|
165
|
-
@property
|
|
164
|
+
@_builtins.property
|
|
166
165
|
@pulumi.getter
|
|
167
|
-
def id(self) ->
|
|
166
|
+
def id(self) -> _builtins.str:
|
|
168
167
|
return pulumi.get(self, "id")
|
|
169
168
|
|
|
170
|
-
@property
|
|
169
|
+
@_builtins.property
|
|
171
170
|
@pulumi.getter(name="lastName")
|
|
172
|
-
def last_name(self) ->
|
|
171
|
+
def last_name(self) -> _builtins.str:
|
|
173
172
|
"""
|
|
174
173
|
The last name of the person associated with this Account.
|
|
175
174
|
"""
|
|
176
175
|
return pulumi.get(self, "last_name")
|
|
177
176
|
|
|
178
|
-
@property
|
|
177
|
+
@_builtins.property
|
|
179
178
|
@pulumi.getter
|
|
180
|
-
def phone(self) ->
|
|
179
|
+
def phone(self) -> _builtins.str:
|
|
181
180
|
"""
|
|
182
181
|
The phone number associated with this Account.
|
|
183
182
|
"""
|
|
184
183
|
return pulumi.get(self, "phone")
|
|
185
184
|
|
|
186
|
-
@property
|
|
185
|
+
@_builtins.property
|
|
187
186
|
@pulumi.getter
|
|
188
|
-
def state(self) ->
|
|
187
|
+
def state(self) -> _builtins.str:
|
|
189
188
|
"""
|
|
190
189
|
If billing address is in the United States, this is the State portion of the Account's billing address. If the address is outside the US, this is the Province associated with the Account's billing address.
|
|
191
190
|
"""
|
|
192
191
|
return pulumi.get(self, "state")
|
|
193
192
|
|
|
194
|
-
@property
|
|
193
|
+
@_builtins.property
|
|
195
194
|
@pulumi.getter
|
|
196
|
-
def zip(self) ->
|
|
195
|
+
def zip(self) -> _builtins.str:
|
|
197
196
|
"""
|
|
198
197
|
The zip code of this Account's billing address.
|
|
199
198
|
"""
|
|
@@ -224,7 +223,7 @@ class AwaitableGetChildAccountResult(GetChildAccountResult):
|
|
|
224
223
|
zip=self.zip)
|
|
225
224
|
|
|
226
225
|
|
|
227
|
-
def get_child_account(euuid: Optional[
|
|
226
|
+
def get_child_account(euuid: Optional[_builtins.str] = None,
|
|
228
227
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetChildAccountResult:
|
|
229
228
|
"""
|
|
230
229
|
Provides information about a Linode Child Account.
|
|
@@ -246,7 +245,7 @@ def get_child_account(euuid: Optional[builtins.str] = None,
|
|
|
246
245
|
```
|
|
247
246
|
|
|
248
247
|
|
|
249
|
-
:param
|
|
248
|
+
:param _builtins.str euuid: The unique EUUID of this Child Account.
|
|
250
249
|
"""
|
|
251
250
|
__args__ = dict()
|
|
252
251
|
__args__['euuid'] = euuid
|
|
@@ -270,7 +269,7 @@ def get_child_account(euuid: Optional[builtins.str] = None,
|
|
|
270
269
|
phone=pulumi.get(__ret__, 'phone'),
|
|
271
270
|
state=pulumi.get(__ret__, 'state'),
|
|
272
271
|
zip=pulumi.get(__ret__, 'zip'))
|
|
273
|
-
def get_child_account_output(euuid: Optional[pulumi.Input[
|
|
272
|
+
def get_child_account_output(euuid: Optional[pulumi.Input[_builtins.str]] = None,
|
|
274
273
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetChildAccountResult]:
|
|
275
274
|
"""
|
|
276
275
|
Provides information about a Linode Child Account.
|
|
@@ -292,7 +291,7 @@ def get_child_account_output(euuid: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
292
291
|
```
|
|
293
292
|
|
|
294
293
|
|
|
295
|
-
:param
|
|
294
|
+
:param _builtins.str euuid: The unique EUUID of this Child Account.
|
|
296
295
|
"""
|
|
297
296
|
__args__ = dict()
|
|
298
297
|
__args__['euuid'] = euuid
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -40,19 +39,19 @@ class GetChildAccountsResult:
|
|
|
40
39
|
raise TypeError("Expected argument 'id' to be a str")
|
|
41
40
|
pulumi.set(__self__, "id", id)
|
|
42
41
|
|
|
43
|
-
@property
|
|
42
|
+
@_builtins.property
|
|
44
43
|
@pulumi.getter(name="childAccounts")
|
|
45
44
|
def child_accounts(self) -> Optional[Sequence['outputs.GetChildAccountsChildAccountResult']]:
|
|
46
45
|
return pulumi.get(self, "child_accounts")
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter
|
|
50
49
|
def filters(self) -> Optional[Sequence['outputs.GetChildAccountsFilterResult']]:
|
|
51
50
|
return pulumi.get(self, "filters")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter
|
|
55
|
-
def id(self) ->
|
|
54
|
+
def id(self) -> _builtins.str:
|
|
56
55
|
return pulumi.get(self, "id")
|
|
57
56
|
|
|
58
57
|
|
|
@@ -2,8 +2,7 @@
|
|
|
2
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
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -55,47 +54,47 @@ class GetDatabaseBackupsResult:
|
|
|
55
54
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
56
55
|
pulumi.set(__self__, "order_by", order_by)
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
59
|
def backups(self) -> Optional[Sequence['outputs.GetDatabaseBackupsBackupResult']]:
|
|
61
60
|
return pulumi.get(self, "backups")
|
|
62
61
|
|
|
63
|
-
@property
|
|
62
|
+
@_builtins.property
|
|
64
63
|
@pulumi.getter(name="databaseId")
|
|
65
|
-
def database_id(self) ->
|
|
64
|
+
def database_id(self) -> _builtins.int:
|
|
66
65
|
return pulumi.get(self, "database_id")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter(name="databaseType")
|
|
70
|
-
def database_type(self) ->
|
|
69
|
+
def database_type(self) -> _builtins.str:
|
|
71
70
|
return pulumi.get(self, "database_type")
|
|
72
71
|
|
|
73
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
74
73
|
@pulumi.getter
|
|
75
74
|
def filters(self) -> Optional[Sequence['outputs.GetDatabaseBackupsFilterResult']]:
|
|
76
75
|
return pulumi.get(self, "filters")
|
|
77
76
|
|
|
78
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
79
78
|
@pulumi.getter
|
|
80
|
-
def id(self) ->
|
|
79
|
+
def id(self) -> _builtins.int:
|
|
81
80
|
"""
|
|
82
81
|
The ID of the database backup object.
|
|
83
82
|
"""
|
|
84
83
|
return pulumi.get(self, "id")
|
|
85
84
|
|
|
86
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
87
86
|
@pulumi.getter
|
|
88
|
-
def latest(self) -> Optional[
|
|
87
|
+
def latest(self) -> Optional[_builtins.bool]:
|
|
89
88
|
return pulumi.get(self, "latest")
|
|
90
89
|
|
|
91
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
92
91
|
@pulumi.getter
|
|
93
|
-
def order(self) -> Optional[
|
|
92
|
+
def order(self) -> Optional[_builtins.str]:
|
|
94
93
|
return pulumi.get(self, "order")
|
|
95
94
|
|
|
96
|
-
@property
|
|
95
|
+
@_builtins.property
|
|
97
96
|
@pulumi.getter(name="orderBy")
|
|
98
|
-
def order_by(self) -> Optional[
|
|
97
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
99
98
|
return pulumi.get(self, "order_by")
|
|
100
99
|
|
|
101
100
|
|
|
@@ -116,12 +115,12 @@ class AwaitableGetDatabaseBackupsResult(GetDatabaseBackupsResult):
|
|
|
116
115
|
|
|
117
116
|
|
|
118
117
|
def get_database_backups(backups: Optional[Sequence[Union['GetDatabaseBackupsBackupArgs', 'GetDatabaseBackupsBackupArgsDict']]] = None,
|
|
119
|
-
database_id: Optional[
|
|
120
|
-
database_type: Optional[
|
|
118
|
+
database_id: Optional[_builtins.int] = None,
|
|
119
|
+
database_type: Optional[_builtins.str] = None,
|
|
121
120
|
filters: Optional[Sequence[Union['GetDatabaseBackupsFilterArgs', 'GetDatabaseBackupsFilterArgsDict']]] = None,
|
|
122
|
-
latest: Optional[
|
|
123
|
-
order: Optional[
|
|
124
|
-
order_by: Optional[
|
|
121
|
+
latest: Optional[_builtins.bool] = None,
|
|
122
|
+
order: Optional[_builtins.str] = None,
|
|
123
|
+
order_by: Optional[_builtins.str] = None,
|
|
125
124
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseBackupsResult:
|
|
126
125
|
"""
|
|
127
126
|
> **DEPRECATION NOTICE:** This data source has been deprecated.
|
|
@@ -156,13 +155,13 @@ def get_database_backups(backups: Optional[Sequence[Union['GetDatabaseBackupsBac
|
|
|
156
155
|
```
|
|
157
156
|
|
|
158
157
|
|
|
159
|
-
:param
|
|
160
|
-
:param
|
|
161
|
-
:param
|
|
158
|
+
:param _builtins.int database_id: The ID of the database to retrieve backups for.
|
|
159
|
+
:param _builtins.str database_type: The type of the database to retrieve backups for. (`mysql`, `postgresql`)
|
|
160
|
+
:param _builtins.bool latest: If true, only the latest backup will be returned.
|
|
162
161
|
|
|
163
162
|
* `filter` - (Optional) A set of filters used to select database backups that meet certain requirements.
|
|
164
|
-
:param
|
|
165
|
-
:param
|
|
163
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
164
|
+
:param _builtins.str order_by: The attribute to order the results by. (`created`)
|
|
166
165
|
"""
|
|
167
166
|
__args__ = dict()
|
|
168
167
|
__args__['backups'] = backups
|
|
@@ -185,12 +184,12 @@ def get_database_backups(backups: Optional[Sequence[Union['GetDatabaseBackupsBac
|
|
|
185
184
|
order=pulumi.get(__ret__, 'order'),
|
|
186
185
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
187
186
|
def get_database_backups_output(backups: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabaseBackupsBackupArgs', 'GetDatabaseBackupsBackupArgsDict']]]]] = None,
|
|
188
|
-
database_id: Optional[pulumi.Input[
|
|
189
|
-
database_type: Optional[pulumi.Input[
|
|
187
|
+
database_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
188
|
+
database_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
190
189
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabaseBackupsFilterArgs', 'GetDatabaseBackupsFilterArgsDict']]]]] = None,
|
|
191
|
-
latest: Optional[pulumi.Input[Optional[
|
|
192
|
-
order: Optional[pulumi.Input[Optional[
|
|
193
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
190
|
+
latest: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
191
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
192
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
194
193
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabaseBackupsResult]:
|
|
195
194
|
"""
|
|
196
195
|
> **DEPRECATION NOTICE:** This data source has been deprecated.
|
|
@@ -225,13 +224,13 @@ def get_database_backups_output(backups: Optional[pulumi.Input[Optional[Sequence
|
|
|
225
224
|
```
|
|
226
225
|
|
|
227
226
|
|
|
228
|
-
:param
|
|
229
|
-
:param
|
|
230
|
-
:param
|
|
227
|
+
:param _builtins.int database_id: The ID of the database to retrieve backups for.
|
|
228
|
+
:param _builtins.str database_type: The type of the database to retrieve backups for. (`mysql`, `postgresql`)
|
|
229
|
+
:param _builtins.bool latest: If true, only the latest backup will be returned.
|
|
231
230
|
|
|
232
231
|
* `filter` - (Optional) A set of filters used to select database backups that meet certain requirements.
|
|
233
|
-
:param
|
|
234
|
-
:param
|
|
232
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
233
|
+
:param _builtins.str order_by: The attribute to order the results by. (`created`)
|
|
235
234
|
"""
|
|
236
235
|
__args__ = dict()
|
|
237
236
|
__args__['backups'] = backups
|