pulumi-linode 5.1.0a1752810302__py3-none-any.whl → 5.1.1a1753933550__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.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/METADATA +1 -1
- pulumi_linode-5.1.1a1753933550.dist-info/RECORD +126 -0
- pulumi_linode-5.1.0a1752810302.dist-info/RECORD +0 -126
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.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
|
|
@@ -49,35 +48,35 @@ class GetStackScriptsResult:
|
|
|
49
48
|
raise TypeError("Expected argument 'stackscripts' to be a list")
|
|
50
49
|
pulumi.set(__self__, "stackscripts", stackscripts)
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
53
|
def filters(self) -> Optional[Sequence['outputs.GetStackScriptsFilterResult']]:
|
|
55
54
|
return pulumi.get(self, "filters")
|
|
56
55
|
|
|
57
|
-
@property
|
|
56
|
+
@_builtins.property
|
|
58
57
|
@pulumi.getter
|
|
59
|
-
def id(self) ->
|
|
58
|
+
def id(self) -> _builtins.str:
|
|
60
59
|
"""
|
|
61
60
|
The unique ID of the StackScript.
|
|
62
61
|
"""
|
|
63
62
|
return pulumi.get(self, "id")
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter
|
|
67
|
-
def latest(self) -> Optional[
|
|
66
|
+
def latest(self) -> Optional[_builtins.bool]:
|
|
68
67
|
return pulumi.get(self, "latest")
|
|
69
68
|
|
|
70
|
-
@property
|
|
69
|
+
@_builtins.property
|
|
71
70
|
@pulumi.getter
|
|
72
|
-
def order(self) -> Optional[
|
|
71
|
+
def order(self) -> Optional[_builtins.str]:
|
|
73
72
|
return pulumi.get(self, "order")
|
|
74
73
|
|
|
75
|
-
@property
|
|
74
|
+
@_builtins.property
|
|
76
75
|
@pulumi.getter(name="orderBy")
|
|
77
|
-
def order_by(self) -> Optional[
|
|
76
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
78
77
|
return pulumi.get(self, "order_by")
|
|
79
78
|
|
|
80
|
-
@property
|
|
79
|
+
@_builtins.property
|
|
81
80
|
@pulumi.getter
|
|
82
81
|
def stackscripts(self) -> Optional[Sequence['outputs.GetStackScriptsStackscriptResult']]:
|
|
83
82
|
return pulumi.get(self, "stackscripts")
|
|
@@ -98,9 +97,9 @@ class AwaitableGetStackScriptsResult(GetStackScriptsResult):
|
|
|
98
97
|
|
|
99
98
|
|
|
100
99
|
def get_stack_scripts(filters: Optional[Sequence[Union['GetStackScriptsFilterArgs', 'GetStackScriptsFilterArgsDict']]] = None,
|
|
101
|
-
latest: Optional[
|
|
102
|
-
order: Optional[
|
|
103
|
-
order_by: Optional[
|
|
100
|
+
latest: Optional[_builtins.bool] = None,
|
|
101
|
+
order: Optional[_builtins.str] = None,
|
|
102
|
+
order_by: Optional[_builtins.str] = None,
|
|
104
103
|
stackscripts: Optional[Sequence[Union['GetStackScriptsStackscriptArgs', 'GetStackScriptsStackscriptArgsDict']]] = None,
|
|
105
104
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStackScriptsResult:
|
|
106
105
|
"""
|
|
@@ -151,11 +150,11 @@ def get_stack_scripts(filters: Optional[Sequence[Union['GetStackScriptsFilterArg
|
|
|
151
150
|
* `username`
|
|
152
151
|
|
|
153
152
|
|
|
154
|
-
:param
|
|
153
|
+
:param _builtins.bool latest: If true, only the latest StackScript will be returned. StackScripts without a valid `created` field are not included in the result.
|
|
155
154
|
|
|
156
155
|
* `filter` - (Optional) A set of filters used to select Linode StackScripts that meet certain requirements.
|
|
157
|
-
:param
|
|
158
|
-
:param
|
|
156
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
157
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
159
158
|
"""
|
|
160
159
|
__args__ = dict()
|
|
161
160
|
__args__['filters'] = filters
|
|
@@ -174,9 +173,9 @@ def get_stack_scripts(filters: Optional[Sequence[Union['GetStackScriptsFilterArg
|
|
|
174
173
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
175
174
|
stackscripts=pulumi.get(__ret__, 'stackscripts'))
|
|
176
175
|
def get_stack_scripts_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetStackScriptsFilterArgs', 'GetStackScriptsFilterArgsDict']]]]] = None,
|
|
177
|
-
latest: Optional[pulumi.Input[Optional[
|
|
178
|
-
order: Optional[pulumi.Input[Optional[
|
|
179
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
176
|
+
latest: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
177
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
178
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
180
179
|
stackscripts: Optional[pulumi.Input[Optional[Sequence[Union['GetStackScriptsStackscriptArgs', 'GetStackScriptsStackscriptArgsDict']]]]] = None,
|
|
181
180
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStackScriptsResult]:
|
|
182
181
|
"""
|
|
@@ -227,11 +226,11 @@ def get_stack_scripts_output(filters: Optional[pulumi.Input[Optional[Sequence[Un
|
|
|
227
226
|
* `username`
|
|
228
227
|
|
|
229
228
|
|
|
230
|
-
:param
|
|
229
|
+
:param _builtins.bool latest: If true, only the latest StackScript will be returned. StackScripts without a valid `created` field are not included in the result.
|
|
231
230
|
|
|
232
231
|
* `filter` - (Optional) A set of filters used to select Linode StackScripts 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. See the Filterable Fields section for a list of valid fields.
|
|
235
234
|
"""
|
|
236
235
|
__args__ = dict()
|
|
237
236
|
__args__['filters'] = filters
|
pulumi_linode/get_user.py
CHANGED
|
@@ -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
|
|
@@ -94,131 +93,131 @@ class GetUserResult:
|
|
|
94
93
|
raise TypeError("Expected argument 'vpc_grants' to be a list")
|
|
95
94
|
pulumi.set(__self__, "vpc_grants", vpc_grants)
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter(name="databaseGrants")
|
|
99
98
|
def database_grants(self) -> Sequence['outputs.GetUserDatabaseGrantResult']:
|
|
100
99
|
return pulumi.get(self, "database_grants")
|
|
101
100
|
|
|
102
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
103
102
|
@pulumi.getter(name="domainGrants")
|
|
104
103
|
def domain_grants(self) -> Sequence['outputs.GetUserDomainGrantResult']:
|
|
105
104
|
return pulumi.get(self, "domain_grants")
|
|
106
105
|
|
|
107
|
-
@property
|
|
106
|
+
@_builtins.property
|
|
108
107
|
@pulumi.getter
|
|
109
|
-
def email(self) ->
|
|
108
|
+
def email(self) -> _builtins.str:
|
|
110
109
|
"""
|
|
111
110
|
The email address for this User, for account management communications, and may be used for other communications as configured.
|
|
112
111
|
"""
|
|
113
112
|
return pulumi.get(self, "email")
|
|
114
113
|
|
|
115
|
-
@property
|
|
114
|
+
@_builtins.property
|
|
116
115
|
@pulumi.getter(name="firewallGrants")
|
|
117
116
|
def firewall_grants(self) -> Sequence['outputs.GetUserFirewallGrantResult']:
|
|
118
117
|
return pulumi.get(self, "firewall_grants")
|
|
119
118
|
|
|
120
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
121
120
|
@pulumi.getter(name="globalGrants")
|
|
122
121
|
def global_grants(self) -> Sequence['outputs.GetUserGlobalGrantResult']:
|
|
123
122
|
return pulumi.get(self, "global_grants")
|
|
124
123
|
|
|
125
|
-
@property
|
|
124
|
+
@_builtins.property
|
|
126
125
|
@pulumi.getter
|
|
127
|
-
def id(self) ->
|
|
126
|
+
def id(self) -> _builtins.str:
|
|
128
127
|
"""
|
|
129
128
|
The ID of entity this grant applies to.
|
|
130
129
|
"""
|
|
131
130
|
return pulumi.get(self, "id")
|
|
132
131
|
|
|
133
|
-
@property
|
|
132
|
+
@_builtins.property
|
|
134
133
|
@pulumi.getter(name="imageGrants")
|
|
135
134
|
def image_grants(self) -> Sequence['outputs.GetUserImageGrantResult']:
|
|
136
135
|
return pulumi.get(self, "image_grants")
|
|
137
136
|
|
|
138
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
139
138
|
@pulumi.getter(name="linodeGrants")
|
|
140
139
|
def linode_grants(self) -> Sequence['outputs.GetUserLinodeGrantResult']:
|
|
141
140
|
return pulumi.get(self, "linode_grants")
|
|
142
141
|
|
|
143
|
-
@property
|
|
142
|
+
@_builtins.property
|
|
144
143
|
@pulumi.getter(name="longviewGrants")
|
|
145
144
|
def longview_grants(self) -> Sequence['outputs.GetUserLongviewGrantResult']:
|
|
146
145
|
return pulumi.get(self, "longview_grants")
|
|
147
146
|
|
|
148
|
-
@property
|
|
147
|
+
@_builtins.property
|
|
149
148
|
@pulumi.getter(name="nodebalancerGrants")
|
|
150
149
|
def nodebalancer_grants(self) -> Sequence['outputs.GetUserNodebalancerGrantResult']:
|
|
151
150
|
return pulumi.get(self, "nodebalancer_grants")
|
|
152
151
|
|
|
153
|
-
@property
|
|
152
|
+
@_builtins.property
|
|
154
153
|
@pulumi.getter(name="passwordCreated")
|
|
155
|
-
def password_created(self) ->
|
|
154
|
+
def password_created(self) -> _builtins.str:
|
|
156
155
|
"""
|
|
157
156
|
The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
|
|
158
157
|
"""
|
|
159
158
|
return pulumi.get(self, "password_created")
|
|
160
159
|
|
|
161
|
-
@property
|
|
160
|
+
@_builtins.property
|
|
162
161
|
@pulumi.getter(name="placementGroupGrants")
|
|
163
162
|
def placement_group_grants(self) -> Sequence['outputs.GetUserPlacementGroupGrantResult']:
|
|
164
163
|
return pulumi.get(self, "placement_group_grants")
|
|
165
164
|
|
|
166
|
-
@property
|
|
165
|
+
@_builtins.property
|
|
167
166
|
@pulumi.getter
|
|
168
|
-
def restricted(self) ->
|
|
167
|
+
def restricted(self) -> _builtins.bool:
|
|
169
168
|
"""
|
|
170
169
|
If true, this User must be granted access to perform actions or access entities on this Account.
|
|
171
170
|
"""
|
|
172
171
|
return pulumi.get(self, "restricted")
|
|
173
172
|
|
|
174
|
-
@property
|
|
173
|
+
@_builtins.property
|
|
175
174
|
@pulumi.getter(name="sshKeys")
|
|
176
|
-
def ssh_keys(self) -> Sequence[
|
|
175
|
+
def ssh_keys(self) -> Sequence[_builtins.str]:
|
|
177
176
|
"""
|
|
178
177
|
A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorized_users field of a create Linode, rebuild Linode, or create Disk request.
|
|
179
178
|
"""
|
|
180
179
|
return pulumi.get(self, "ssh_keys")
|
|
181
180
|
|
|
182
|
-
@property
|
|
181
|
+
@_builtins.property
|
|
183
182
|
@pulumi.getter(name="stackscriptGrants")
|
|
184
183
|
def stackscript_grants(self) -> Sequence['outputs.GetUserStackscriptGrantResult']:
|
|
185
184
|
return pulumi.get(self, "stackscript_grants")
|
|
186
185
|
|
|
187
|
-
@property
|
|
186
|
+
@_builtins.property
|
|
188
187
|
@pulumi.getter(name="tfaEnabled")
|
|
189
|
-
def tfa_enabled(self) ->
|
|
188
|
+
def tfa_enabled(self) -> _builtins.bool:
|
|
190
189
|
"""
|
|
191
190
|
A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
|
|
192
191
|
"""
|
|
193
192
|
return pulumi.get(self, "tfa_enabled")
|
|
194
193
|
|
|
195
|
-
@property
|
|
194
|
+
@_builtins.property
|
|
196
195
|
@pulumi.getter(name="userType")
|
|
197
|
-
def user_type(self) ->
|
|
196
|
+
def user_type(self) -> _builtins.str:
|
|
198
197
|
"""
|
|
199
198
|
The type of this user.
|
|
200
199
|
"""
|
|
201
200
|
return pulumi.get(self, "user_type")
|
|
202
201
|
|
|
203
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
204
203
|
@pulumi.getter
|
|
205
|
-
def username(self) ->
|
|
204
|
+
def username(self) -> _builtins.str:
|
|
206
205
|
return pulumi.get(self, "username")
|
|
207
206
|
|
|
208
|
-
@property
|
|
207
|
+
@_builtins.property
|
|
209
208
|
@pulumi.getter(name="verifiedPhoneNumber")
|
|
210
|
-
def verified_phone_number(self) ->
|
|
209
|
+
def verified_phone_number(self) -> _builtins.str:
|
|
211
210
|
"""
|
|
212
211
|
The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
|
|
213
212
|
"""
|
|
214
213
|
return pulumi.get(self, "verified_phone_number")
|
|
215
214
|
|
|
216
|
-
@property
|
|
215
|
+
@_builtins.property
|
|
217
216
|
@pulumi.getter(name="volumeGrants")
|
|
218
217
|
def volume_grants(self) -> Sequence['outputs.GetUserVolumeGrantResult']:
|
|
219
218
|
return pulumi.get(self, "volume_grants")
|
|
220
219
|
|
|
221
|
-
@property
|
|
220
|
+
@_builtins.property
|
|
222
221
|
@pulumi.getter(name="vpcGrants")
|
|
223
222
|
def vpc_grants(self) -> Sequence['outputs.GetUserVpcGrantResult']:
|
|
224
223
|
return pulumi.get(self, "vpc_grants")
|
|
@@ -262,7 +261,7 @@ def get_user(database_grants: Optional[Sequence[Union['GetUserDatabaseGrantArgs'
|
|
|
262
261
|
nodebalancer_grants: Optional[Sequence[Union['GetUserNodebalancerGrantArgs', 'GetUserNodebalancerGrantArgsDict']]] = None,
|
|
263
262
|
placement_group_grants: Optional[Sequence[Union['GetUserPlacementGroupGrantArgs', 'GetUserPlacementGroupGrantArgsDict']]] = None,
|
|
264
263
|
stackscript_grants: Optional[Sequence[Union['GetUserStackscriptGrantArgs', 'GetUserStackscriptGrantArgsDict']]] = None,
|
|
265
|
-
username: Optional[
|
|
264
|
+
username: Optional[_builtins.str] = None,
|
|
266
265
|
volume_grants: Optional[Sequence[Union['GetUserVolumeGrantArgs', 'GetUserVolumeGrantArgsDict']]] = None,
|
|
267
266
|
vpc_grants: Optional[Sequence[Union['GetUserVpcGrantArgs', 'GetUserVpcGrantArgsDict']]] = None,
|
|
268
267
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUserResult:
|
|
@@ -284,7 +283,7 @@ def get_user(database_grants: Optional[Sequence[Union['GetUserDatabaseGrantArgs'
|
|
|
284
283
|
The following example shows a sample grant.
|
|
285
284
|
|
|
286
285
|
|
|
287
|
-
:param
|
|
286
|
+
:param _builtins.str username: The unique username of this User.
|
|
288
287
|
"""
|
|
289
288
|
__args__ = dict()
|
|
290
289
|
__args__['databaseGrants'] = database_grants
|
|
@@ -333,7 +332,7 @@ def get_user_output(database_grants: Optional[pulumi.Input[Optional[Sequence[Uni
|
|
|
333
332
|
nodebalancer_grants: Optional[pulumi.Input[Optional[Sequence[Union['GetUserNodebalancerGrantArgs', 'GetUserNodebalancerGrantArgsDict']]]]] = None,
|
|
334
333
|
placement_group_grants: Optional[pulumi.Input[Optional[Sequence[Union['GetUserPlacementGroupGrantArgs', 'GetUserPlacementGroupGrantArgsDict']]]]] = None,
|
|
335
334
|
stackscript_grants: Optional[pulumi.Input[Optional[Sequence[Union['GetUserStackscriptGrantArgs', 'GetUserStackscriptGrantArgsDict']]]]] = None,
|
|
336
|
-
username: Optional[pulumi.Input[
|
|
335
|
+
username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
337
336
|
volume_grants: Optional[pulumi.Input[Optional[Sequence[Union['GetUserVolumeGrantArgs', 'GetUserVolumeGrantArgsDict']]]]] = None,
|
|
338
337
|
vpc_grants: Optional[pulumi.Input[Optional[Sequence[Union['GetUserVpcGrantArgs', 'GetUserVpcGrantArgsDict']]]]] = None,
|
|
339
338
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUserResult]:
|
|
@@ -355,7 +354,7 @@ def get_user_output(database_grants: Optional[pulumi.Input[Optional[Sequence[Uni
|
|
|
355
354
|
The following example shows a sample grant.
|
|
356
355
|
|
|
357
356
|
|
|
358
|
-
:param
|
|
357
|
+
:param _builtins.str username: The unique username of this User.
|
|
359
358
|
"""
|
|
360
359
|
__args__ = dict()
|
|
361
360
|
__args__['databaseGrants'] = database_grants
|
pulumi_linode/get_users.py
CHANGED
|
@@ -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
|
|
@@ -46,30 +45,30 @@ class GetUsersResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'users' to be a list")
|
|
47
46
|
pulumi.set(__self__, "users", users)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetUsersFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The ID of entity this grant applies to.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "id")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def order(self) -> Optional[
|
|
63
|
+
def order(self) -> Optional[_builtins.str]:
|
|
65
64
|
return pulumi.get(self, "order")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter(name="orderBy")
|
|
69
|
-
def order_by(self) -> Optional[
|
|
68
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order_by")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter
|
|
74
73
|
def users(self) -> Optional[Sequence['outputs.GetUsersUserResult']]:
|
|
75
74
|
return pulumi.get(self, "users")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetUsersResult(GetUsersResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_users(filters: Optional[Sequence[Union['GetUsersFilterArgs', 'GetUsersFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
users: Optional[Sequence[Union['GetUsersUserArgs', 'GetUsersUserArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUsersResult:
|
|
96
95
|
"""
|
|
@@ -125,8 +124,8 @@ def get_users(filters: Optional[Sequence[Union['GetUsersFilterArgs', 'GetUsersFi
|
|
|
125
124
|
* `verfied_phone_number`
|
|
126
125
|
|
|
127
126
|
|
|
128
|
-
:param
|
|
129
|
-
:param
|
|
127
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
128
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
130
129
|
"""
|
|
131
130
|
__args__ = dict()
|
|
132
131
|
__args__['filters'] = filters
|
|
@@ -143,8 +142,8 @@ def get_users(filters: Optional[Sequence[Union['GetUsersFilterArgs', 'GetUsersFi
|
|
|
143
142
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
144
143
|
users=pulumi.get(__ret__, 'users'))
|
|
145
144
|
def get_users_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetUsersFilterArgs', 'GetUsersFilterArgsDict']]]]] = None,
|
|
146
|
-
order: Optional[pulumi.Input[Optional[
|
|
147
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
145
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
146
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
148
147
|
users: Optional[pulumi.Input[Optional[Sequence[Union['GetUsersUserArgs', 'GetUsersUserArgsDict']]]]] = None,
|
|
149
148
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUsersResult]:
|
|
150
149
|
"""
|
|
@@ -179,8 +178,8 @@ def get_users_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['Get
|
|
|
179
178
|
* `verfied_phone_number`
|
|
180
179
|
|
|
181
180
|
|
|
182
|
-
:param
|
|
183
|
-
:param
|
|
181
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
182
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
184
183
|
"""
|
|
185
184
|
__args__ = dict()
|
|
186
185
|
__args__['filters'] = filters
|
pulumi_linode/get_vlans.py
CHANGED
|
@@ -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
|
|
@@ -46,27 +45,27 @@ class GetVlansResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'vlans' to be a list")
|
|
47
46
|
pulumi.set(__self__, "vlans", vlans)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetVlansFilterResult']]:
|
|
52
51
|
return pulumi.get(self, "filters")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def id(self) ->
|
|
55
|
+
def id(self) -> _builtins.str:
|
|
57
56
|
return pulumi.get(self, "id")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def order(self) -> Optional[
|
|
60
|
+
def order(self) -> Optional[_builtins.str]:
|
|
62
61
|
return pulumi.get(self, "order")
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter(name="orderBy")
|
|
66
|
-
def order_by(self) -> Optional[
|
|
65
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
67
66
|
return pulumi.get(self, "order_by")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def vlans(self) -> Optional[Sequence['outputs.GetVlansVlanResult']]:
|
|
72
71
|
return pulumi.get(self, "vlans")
|
|
@@ -86,8 +85,8 @@ class AwaitableGetVlansResult(GetVlansResult):
|
|
|
86
85
|
|
|
87
86
|
|
|
88
87
|
def get_vlans(filters: Optional[Sequence[Union['GetVlansFilterArgs', 'GetVlansFilterArgsDict']]] = None,
|
|
89
|
-
order: Optional[
|
|
90
|
-
order_by: Optional[
|
|
88
|
+
order: Optional[_builtins.str] = None,
|
|
89
|
+
order_by: Optional[_builtins.str] = None,
|
|
91
90
|
vlans: Optional[Sequence[Union['GetVlansVlanArgs', 'GetVlansVlanArgsDict']]] = None,
|
|
92
91
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVlansResult:
|
|
93
92
|
"""
|
|
@@ -128,8 +127,8 @@ def get_vlans(filters: Optional[Sequence[Union['GetVlansFilterArgs', 'GetVlansFi
|
|
|
128
127
|
* `region`
|
|
129
128
|
|
|
130
129
|
|
|
131
|
-
:param
|
|
132
|
-
:param
|
|
130
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
131
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
133
132
|
"""
|
|
134
133
|
__args__ = dict()
|
|
135
134
|
__args__['filters'] = filters
|
|
@@ -146,8 +145,8 @@ def get_vlans(filters: Optional[Sequence[Union['GetVlansFilterArgs', 'GetVlansFi
|
|
|
146
145
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
147
146
|
vlans=pulumi.get(__ret__, 'vlans'))
|
|
148
147
|
def get_vlans_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetVlansFilterArgs', 'GetVlansFilterArgsDict']]]]] = None,
|
|
149
|
-
order: Optional[pulumi.Input[Optional[
|
|
150
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
148
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
149
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
151
150
|
vlans: Optional[pulumi.Input[Optional[Sequence[Union['GetVlansVlanArgs', 'GetVlansVlanArgsDict']]]]] = None,
|
|
152
151
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVlansResult]:
|
|
153
152
|
"""
|
|
@@ -188,8 +187,8 @@ def get_vlans_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['Get
|
|
|
188
187
|
* `region`
|
|
189
188
|
|
|
190
189
|
|
|
191
|
-
:param
|
|
192
|
-
:param
|
|
190
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
191
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
193
192
|
"""
|
|
194
193
|
__args__ = dict()
|
|
195
194
|
__args__['filters'] = filters
|
pulumi_linode/get_volume.py
CHANGED
|
@@ -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
|
|
@@ -62,89 +61,89 @@ class GetVolumeResult:
|
|
|
62
61
|
raise TypeError("Expected argument 'updated' to be a str")
|
|
63
62
|
pulumi.set(__self__, "updated", updated)
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter
|
|
67
|
-
def created(self) ->
|
|
66
|
+
def created(self) -> _builtins.str:
|
|
68
67
|
"""
|
|
69
68
|
When this Volume was created.
|
|
70
69
|
"""
|
|
71
70
|
return pulumi.get(self, "created")
|
|
72
71
|
|
|
73
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
74
73
|
@pulumi.getter
|
|
75
|
-
def encryption(self) ->
|
|
74
|
+
def encryption(self) -> _builtins.str:
|
|
76
75
|
"""
|
|
77
76
|
Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
|
|
78
77
|
"""
|
|
79
78
|
return pulumi.get(self, "encryption")
|
|
80
79
|
|
|
81
|
-
@property
|
|
80
|
+
@_builtins.property
|
|
82
81
|
@pulumi.getter(name="filesystemPath")
|
|
83
|
-
def filesystem_path(self) ->
|
|
82
|
+
def filesystem_path(self) -> _builtins.str:
|
|
84
83
|
"""
|
|
85
84
|
The full filesystem path for the Volume based on the Volume's label. Path is /dev/disk/by-id/scsi-0LinodeVolume + Volume label.
|
|
86
85
|
"""
|
|
87
86
|
return pulumi.get(self, "filesystem_path")
|
|
88
87
|
|
|
89
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
90
89
|
@pulumi.getter
|
|
91
|
-
def id(self) ->
|
|
90
|
+
def id(self) -> _builtins.int:
|
|
92
91
|
"""
|
|
93
92
|
The unique ID of this Volume.
|
|
94
93
|
"""
|
|
95
94
|
return pulumi.get(self, "id")
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter
|
|
99
|
-
def label(self) ->
|
|
98
|
+
def label(self) -> _builtins.str:
|
|
100
99
|
"""
|
|
101
100
|
This Volume's label is for display purposes only.
|
|
102
101
|
"""
|
|
103
102
|
return pulumi.get(self, "label")
|
|
104
103
|
|
|
105
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
106
105
|
@pulumi.getter(name="linodeId")
|
|
107
|
-
def linode_id(self) ->
|
|
106
|
+
def linode_id(self) -> _builtins.int:
|
|
108
107
|
"""
|
|
109
108
|
If a Volume is attached to a specific Linode, the ID of that Linode will be displayed here. If the Volume is unattached, this value will be null.
|
|
110
109
|
"""
|
|
111
110
|
return pulumi.get(self, "linode_id")
|
|
112
111
|
|
|
113
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
114
113
|
@pulumi.getter
|
|
115
|
-
def region(self) ->
|
|
114
|
+
def region(self) -> _builtins.str:
|
|
116
115
|
"""
|
|
117
116
|
The datacenter in which this Volume is located. See all regions [here](https://api.linode.com/v4/regions).
|
|
118
117
|
"""
|
|
119
118
|
return pulumi.get(self, "region")
|
|
120
119
|
|
|
121
|
-
@property
|
|
120
|
+
@_builtins.property
|
|
122
121
|
@pulumi.getter
|
|
123
|
-
def size(self) ->
|
|
122
|
+
def size(self) -> _builtins.int:
|
|
124
123
|
"""
|
|
125
124
|
The Volume's size, in GiB.
|
|
126
125
|
"""
|
|
127
126
|
return pulumi.get(self, "size")
|
|
128
127
|
|
|
129
|
-
@property
|
|
128
|
+
@_builtins.property
|
|
130
129
|
@pulumi.getter
|
|
131
|
-
def status(self) ->
|
|
130
|
+
def status(self) -> _builtins.str:
|
|
132
131
|
"""
|
|
133
132
|
The current status of the Volume. (`creating`, `active`, `resizing`, `contact_support`)
|
|
134
133
|
"""
|
|
135
134
|
return pulumi.get(self, "status")
|
|
136
135
|
|
|
137
|
-
@property
|
|
136
|
+
@_builtins.property
|
|
138
137
|
@pulumi.getter
|
|
139
|
-
def tags(self) -> Sequence[
|
|
138
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
140
139
|
"""
|
|
141
140
|
An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
142
141
|
"""
|
|
143
142
|
return pulumi.get(self, "tags")
|
|
144
143
|
|
|
145
|
-
@property
|
|
144
|
+
@_builtins.property
|
|
146
145
|
@pulumi.getter
|
|
147
|
-
def updated(self) ->
|
|
146
|
+
def updated(self) -> _builtins.str:
|
|
148
147
|
"""
|
|
149
148
|
When this Volume was last updated.
|
|
150
149
|
"""
|
|
@@ -170,7 +169,7 @@ class AwaitableGetVolumeResult(GetVolumeResult):
|
|
|
170
169
|
updated=self.updated)
|
|
171
170
|
|
|
172
171
|
|
|
173
|
-
def get_volume(id: Optional[
|
|
172
|
+
def get_volume(id: Optional[_builtins.int] = None,
|
|
174
173
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVolumeResult:
|
|
175
174
|
"""
|
|
176
175
|
Provides information about a Linode Volume.
|
|
@@ -188,7 +187,7 @@ def get_volume(id: Optional[builtins.int] = None,
|
|
|
188
187
|
```
|
|
189
188
|
|
|
190
189
|
|
|
191
|
-
:param
|
|
190
|
+
:param _builtins.int id: The unique numeric ID of the Volume record to query.
|
|
192
191
|
"""
|
|
193
192
|
__args__ = dict()
|
|
194
193
|
__args__['id'] = id
|
|
@@ -207,7 +206,7 @@ def get_volume(id: Optional[builtins.int] = None,
|
|
|
207
206
|
status=pulumi.get(__ret__, 'status'),
|
|
208
207
|
tags=pulumi.get(__ret__, 'tags'),
|
|
209
208
|
updated=pulumi.get(__ret__, 'updated'))
|
|
210
|
-
def get_volume_output(id: Optional[pulumi.Input[
|
|
209
|
+
def get_volume_output(id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
211
210
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVolumeResult]:
|
|
212
211
|
"""
|
|
213
212
|
Provides information about a Linode Volume.
|
|
@@ -225,7 +224,7 @@ def get_volume_output(id: Optional[pulumi.Input[builtins.int]] = None,
|
|
|
225
224
|
```
|
|
226
225
|
|
|
227
226
|
|
|
228
|
-
:param
|
|
227
|
+
:param _builtins.int id: The unique numeric ID of the Volume record to query.
|
|
229
228
|
"""
|
|
230
229
|
__args__ = dict()
|
|
231
230
|
__args__['id'] = id
|