pulumi-linode 5.1.0a1752810302__py3-none-any.whl → 5.1.1__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.1.dist-info}/METADATA +1 -1
- pulumi_linode-5.1.1.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.1.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1.dist-info}/top_level.txt +0 -0
pulumi_linode/firewall_device.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
|
|
@@ -20,72 +19,72 @@ __all__ = ['FirewallDeviceInitArgs', 'FirewallDevice']
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class FirewallDeviceInitArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
entity_id: pulumi.Input[
|
|
24
|
-
firewall_id: pulumi.Input[
|
|
25
|
-
entity_type: Optional[pulumi.Input[
|
|
22
|
+
entity_id: pulumi.Input[_builtins.int],
|
|
23
|
+
firewall_id: pulumi.Input[_builtins.int],
|
|
24
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None):
|
|
26
25
|
"""
|
|
27
26
|
The set of arguments for constructing a FirewallDevice resource.
|
|
28
|
-
:param pulumi.Input[
|
|
29
|
-
:param pulumi.Input[
|
|
30
|
-
:param pulumi.Input[
|
|
27
|
+
:param pulumi.Input[_builtins.int] entity_id: The unique ID of the entity to attach.
|
|
28
|
+
:param pulumi.Input[_builtins.int] firewall_id: The unique ID of the target Firewall.
|
|
29
|
+
:param pulumi.Input[_builtins.str] entity_type: The type of the entity to attach. (default: `linode`)
|
|
31
30
|
"""
|
|
32
31
|
pulumi.set(__self__, "entity_id", entity_id)
|
|
33
32
|
pulumi.set(__self__, "firewall_id", firewall_id)
|
|
34
33
|
if entity_type is not None:
|
|
35
34
|
pulumi.set(__self__, "entity_type", entity_type)
|
|
36
35
|
|
|
37
|
-
@property
|
|
36
|
+
@_builtins.property
|
|
38
37
|
@pulumi.getter(name="entityId")
|
|
39
|
-
def entity_id(self) -> pulumi.Input[
|
|
38
|
+
def entity_id(self) -> pulumi.Input[_builtins.int]:
|
|
40
39
|
"""
|
|
41
40
|
The unique ID of the entity to attach.
|
|
42
41
|
"""
|
|
43
42
|
return pulumi.get(self, "entity_id")
|
|
44
43
|
|
|
45
44
|
@entity_id.setter
|
|
46
|
-
def entity_id(self, value: pulumi.Input[
|
|
45
|
+
def entity_id(self, value: pulumi.Input[_builtins.int]):
|
|
47
46
|
pulumi.set(self, "entity_id", value)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter(name="firewallId")
|
|
51
|
-
def firewall_id(self) -> pulumi.Input[
|
|
50
|
+
def firewall_id(self) -> pulumi.Input[_builtins.int]:
|
|
52
51
|
"""
|
|
53
52
|
The unique ID of the target Firewall.
|
|
54
53
|
"""
|
|
55
54
|
return pulumi.get(self, "firewall_id")
|
|
56
55
|
|
|
57
56
|
@firewall_id.setter
|
|
58
|
-
def firewall_id(self, value: pulumi.Input[
|
|
57
|
+
def firewall_id(self, value: pulumi.Input[_builtins.int]):
|
|
59
58
|
pulumi.set(self, "firewall_id", value)
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter(name="entityType")
|
|
63
|
-
def entity_type(self) -> Optional[pulumi.Input[
|
|
62
|
+
def entity_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
64
63
|
"""
|
|
65
64
|
The type of the entity to attach. (default: `linode`)
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "entity_type")
|
|
68
67
|
|
|
69
68
|
@entity_type.setter
|
|
70
|
-
def entity_type(self, value: Optional[pulumi.Input[
|
|
69
|
+
def entity_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
71
70
|
pulumi.set(self, "entity_type", value)
|
|
72
71
|
|
|
73
72
|
|
|
74
73
|
@pulumi.input_type
|
|
75
74
|
class _FirewallDeviceState:
|
|
76
75
|
def __init__(__self__, *,
|
|
77
|
-
created: Optional[pulumi.Input[
|
|
78
|
-
entity_id: Optional[pulumi.Input[
|
|
79
|
-
entity_type: Optional[pulumi.Input[
|
|
80
|
-
firewall_id: Optional[pulumi.Input[
|
|
81
|
-
updated: Optional[pulumi.Input[
|
|
76
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
77
|
+
entity_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
78
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
79
|
+
firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
80
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None):
|
|
82
81
|
"""
|
|
83
82
|
Input properties used for looking up and filtering FirewallDevice resources.
|
|
84
|
-
:param pulumi.Input[
|
|
85
|
-
:param pulumi.Input[
|
|
86
|
-
:param pulumi.Input[
|
|
87
|
-
:param pulumi.Input[
|
|
88
|
-
:param pulumi.Input[
|
|
83
|
+
:param pulumi.Input[_builtins.str] created: When the Firewall Device was last created.
|
|
84
|
+
:param pulumi.Input[_builtins.int] entity_id: The unique ID of the entity to attach.
|
|
85
|
+
:param pulumi.Input[_builtins.str] entity_type: The type of the entity to attach. (default: `linode`)
|
|
86
|
+
:param pulumi.Input[_builtins.int] firewall_id: The unique ID of the target Firewall.
|
|
87
|
+
:param pulumi.Input[_builtins.str] updated: When the Firewall Device was last updated.
|
|
89
88
|
"""
|
|
90
89
|
if created is not None:
|
|
91
90
|
pulumi.set(__self__, "created", created)
|
|
@@ -98,64 +97,64 @@ class _FirewallDeviceState:
|
|
|
98
97
|
if updated is not None:
|
|
99
98
|
pulumi.set(__self__, "updated", updated)
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter
|
|
103
|
-
def created(self) -> Optional[pulumi.Input[
|
|
102
|
+
def created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
104
103
|
"""
|
|
105
104
|
When the Firewall Device was last created.
|
|
106
105
|
"""
|
|
107
106
|
return pulumi.get(self, "created")
|
|
108
107
|
|
|
109
108
|
@created.setter
|
|
110
|
-
def created(self, value: Optional[pulumi.Input[
|
|
109
|
+
def created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
111
110
|
pulumi.set(self, "created", value)
|
|
112
111
|
|
|
113
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
114
113
|
@pulumi.getter(name="entityId")
|
|
115
|
-
def entity_id(self) -> Optional[pulumi.Input[
|
|
114
|
+
def entity_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
116
115
|
"""
|
|
117
116
|
The unique ID of the entity to attach.
|
|
118
117
|
"""
|
|
119
118
|
return pulumi.get(self, "entity_id")
|
|
120
119
|
|
|
121
120
|
@entity_id.setter
|
|
122
|
-
def entity_id(self, value: Optional[pulumi.Input[
|
|
121
|
+
def entity_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
123
122
|
pulumi.set(self, "entity_id", value)
|
|
124
123
|
|
|
125
|
-
@property
|
|
124
|
+
@_builtins.property
|
|
126
125
|
@pulumi.getter(name="entityType")
|
|
127
|
-
def entity_type(self) -> Optional[pulumi.Input[
|
|
126
|
+
def entity_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
128
127
|
"""
|
|
129
128
|
The type of the entity to attach. (default: `linode`)
|
|
130
129
|
"""
|
|
131
130
|
return pulumi.get(self, "entity_type")
|
|
132
131
|
|
|
133
132
|
@entity_type.setter
|
|
134
|
-
def entity_type(self, value: Optional[pulumi.Input[
|
|
133
|
+
def entity_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
135
134
|
pulumi.set(self, "entity_type", value)
|
|
136
135
|
|
|
137
|
-
@property
|
|
136
|
+
@_builtins.property
|
|
138
137
|
@pulumi.getter(name="firewallId")
|
|
139
|
-
def firewall_id(self) -> Optional[pulumi.Input[
|
|
138
|
+
def firewall_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
140
139
|
"""
|
|
141
140
|
The unique ID of the target Firewall.
|
|
142
141
|
"""
|
|
143
142
|
return pulumi.get(self, "firewall_id")
|
|
144
143
|
|
|
145
144
|
@firewall_id.setter
|
|
146
|
-
def firewall_id(self, value: Optional[pulumi.Input[
|
|
145
|
+
def firewall_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
147
146
|
pulumi.set(self, "firewall_id", value)
|
|
148
147
|
|
|
149
|
-
@property
|
|
148
|
+
@_builtins.property
|
|
150
149
|
@pulumi.getter
|
|
151
|
-
def updated(self) -> Optional[pulumi.Input[
|
|
150
|
+
def updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
152
151
|
"""
|
|
153
152
|
When the Firewall Device was last updated.
|
|
154
153
|
"""
|
|
155
154
|
return pulumi.get(self, "updated")
|
|
156
155
|
|
|
157
156
|
@updated.setter
|
|
158
|
-
def updated(self, value: Optional[pulumi.Input[
|
|
157
|
+
def updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
159
158
|
pulumi.set(self, "updated", value)
|
|
160
159
|
|
|
161
160
|
|
|
@@ -165,9 +164,9 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
165
164
|
def __init__(__self__,
|
|
166
165
|
resource_name: str,
|
|
167
166
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
168
|
-
entity_id: Optional[pulumi.Input[
|
|
169
|
-
entity_type: Optional[pulumi.Input[
|
|
170
|
-
firewall_id: Optional[pulumi.Input[
|
|
167
|
+
entity_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
168
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
169
|
+
firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
171
170
|
__props__=None):
|
|
172
171
|
"""
|
|
173
172
|
Manages a Linode Firewall Device.
|
|
@@ -212,9 +211,9 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
212
211
|
|
|
213
212
|
:param str resource_name: The name of the resource.
|
|
214
213
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
215
|
-
:param pulumi.Input[
|
|
216
|
-
:param pulumi.Input[
|
|
217
|
-
:param pulumi.Input[
|
|
214
|
+
:param pulumi.Input[_builtins.int] entity_id: The unique ID of the entity to attach.
|
|
215
|
+
:param pulumi.Input[_builtins.str] entity_type: The type of the entity to attach. (default: `linode`)
|
|
216
|
+
:param pulumi.Input[_builtins.int] firewall_id: The unique ID of the target Firewall.
|
|
218
217
|
"""
|
|
219
218
|
...
|
|
220
219
|
@overload
|
|
@@ -278,9 +277,9 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
278
277
|
def _internal_init(__self__,
|
|
279
278
|
resource_name: str,
|
|
280
279
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
281
|
-
entity_id: Optional[pulumi.Input[
|
|
282
|
-
entity_type: Optional[pulumi.Input[
|
|
283
|
-
firewall_id: Optional[pulumi.Input[
|
|
280
|
+
entity_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
281
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
282
|
+
firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
284
283
|
__props__=None):
|
|
285
284
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
286
285
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -309,11 +308,11 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
309
308
|
def get(resource_name: str,
|
|
310
309
|
id: pulumi.Input[str],
|
|
311
310
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
312
|
-
created: Optional[pulumi.Input[
|
|
313
|
-
entity_id: Optional[pulumi.Input[
|
|
314
|
-
entity_type: Optional[pulumi.Input[
|
|
315
|
-
firewall_id: Optional[pulumi.Input[
|
|
316
|
-
updated: Optional[pulumi.Input[
|
|
311
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
312
|
+
entity_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
313
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
314
|
+
firewall_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
315
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'FirewallDevice':
|
|
317
316
|
"""
|
|
318
317
|
Get an existing FirewallDevice resource's state with the given name, id, and optional extra
|
|
319
318
|
properties used to qualify the lookup.
|
|
@@ -321,11 +320,11 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
321
320
|
:param str resource_name: The unique name of the resulting resource.
|
|
322
321
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
323
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
324
|
-
:param pulumi.Input[
|
|
325
|
-
:param pulumi.Input[
|
|
326
|
-
:param pulumi.Input[
|
|
327
|
-
:param pulumi.Input[
|
|
328
|
-
:param pulumi.Input[
|
|
323
|
+
:param pulumi.Input[_builtins.str] created: When the Firewall Device was last created.
|
|
324
|
+
:param pulumi.Input[_builtins.int] entity_id: The unique ID of the entity to attach.
|
|
325
|
+
:param pulumi.Input[_builtins.str] entity_type: The type of the entity to attach. (default: `linode`)
|
|
326
|
+
:param pulumi.Input[_builtins.int] firewall_id: The unique ID of the target Firewall.
|
|
327
|
+
:param pulumi.Input[_builtins.str] updated: When the Firewall Device was last updated.
|
|
329
328
|
"""
|
|
330
329
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
331
330
|
|
|
@@ -338,41 +337,41 @@ class FirewallDevice(pulumi.CustomResource):
|
|
|
338
337
|
__props__.__dict__["updated"] = updated
|
|
339
338
|
return FirewallDevice(resource_name, opts=opts, __props__=__props__)
|
|
340
339
|
|
|
341
|
-
@property
|
|
340
|
+
@_builtins.property
|
|
342
341
|
@pulumi.getter
|
|
343
|
-
def created(self) -> pulumi.Output[
|
|
342
|
+
def created(self) -> pulumi.Output[_builtins.str]:
|
|
344
343
|
"""
|
|
345
344
|
When the Firewall Device was last created.
|
|
346
345
|
"""
|
|
347
346
|
return pulumi.get(self, "created")
|
|
348
347
|
|
|
349
|
-
@property
|
|
348
|
+
@_builtins.property
|
|
350
349
|
@pulumi.getter(name="entityId")
|
|
351
|
-
def entity_id(self) -> pulumi.Output[
|
|
350
|
+
def entity_id(self) -> pulumi.Output[_builtins.int]:
|
|
352
351
|
"""
|
|
353
352
|
The unique ID of the entity to attach.
|
|
354
353
|
"""
|
|
355
354
|
return pulumi.get(self, "entity_id")
|
|
356
355
|
|
|
357
|
-
@property
|
|
356
|
+
@_builtins.property
|
|
358
357
|
@pulumi.getter(name="entityType")
|
|
359
|
-
def entity_type(self) -> pulumi.Output[
|
|
358
|
+
def entity_type(self) -> pulumi.Output[_builtins.str]:
|
|
360
359
|
"""
|
|
361
360
|
The type of the entity to attach. (default: `linode`)
|
|
362
361
|
"""
|
|
363
362
|
return pulumi.get(self, "entity_type")
|
|
364
363
|
|
|
365
|
-
@property
|
|
364
|
+
@_builtins.property
|
|
366
365
|
@pulumi.getter(name="firewallId")
|
|
367
|
-
def firewall_id(self) -> pulumi.Output[
|
|
366
|
+
def firewall_id(self) -> pulumi.Output[_builtins.int]:
|
|
368
367
|
"""
|
|
369
368
|
The unique ID of the target Firewall.
|
|
370
369
|
"""
|
|
371
370
|
return pulumi.get(self, "firewall_id")
|
|
372
371
|
|
|
373
|
-
@property
|
|
372
|
+
@_builtins.property
|
|
374
373
|
@pulumi.getter
|
|
375
|
-
def updated(self) -> pulumi.Output[
|
|
374
|
+
def updated(self) -> pulumi.Output[_builtins.str]:
|
|
376
375
|
"""
|
|
377
376
|
When the Firewall Device was last updated.
|
|
378
377
|
"""
|
pulumi_linode/get_account.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
|
|
@@ -77,123 +76,123 @@ class GetAccountResult:
|
|
|
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 the current 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
|
"""
|
|
@@ -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 GetAccountAvailabilitiesResult:
|
|
|
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
|
|
45
44
|
def availabilities(self) -> Optional[Sequence['outputs.GetAccountAvailabilitiesAvailabilityResult']]:
|
|
46
45
|
return pulumi.get(self, "availabilities")
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter
|
|
50
49
|
def filters(self) -> Optional[Sequence['outputs.GetAccountAvailabilitiesFilterResult']]:
|
|
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
|
|
@@ -41,33 +40,33 @@ class GetAccountAvailabilityResult:
|
|
|
41
40
|
raise TypeError("Expected argument 'unavailables' to be a list")
|
|
42
41
|
pulumi.set(__self__, "unavailables", unavailables)
|
|
43
42
|
|
|
44
|
-
@property
|
|
43
|
+
@_builtins.property
|
|
45
44
|
@pulumi.getter
|
|
46
|
-
def availables(self) -> Sequence[
|
|
45
|
+
def availables(self) -> Sequence[_builtins.str]:
|
|
47
46
|
"""
|
|
48
47
|
A set of services which are available to the account in a region.
|
|
49
48
|
"""
|
|
50
49
|
return pulumi.get(self, "availables")
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
|
-
def id(self) ->
|
|
53
|
+
def id(self) -> _builtins.str:
|
|
55
54
|
"""
|
|
56
55
|
The provider-assigned unique ID for this managed resource.
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "id")
|
|
59
58
|
|
|
60
|
-
@property
|
|
59
|
+
@_builtins.property
|
|
61
60
|
@pulumi.getter
|
|
62
|
-
def region(self) ->
|
|
61
|
+
def region(self) -> _builtins.str:
|
|
63
62
|
"""
|
|
64
63
|
The region ID.
|
|
65
64
|
"""
|
|
66
65
|
return pulumi.get(self, "region")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter
|
|
70
|
-
def unavailables(self) -> Sequence[
|
|
69
|
+
def unavailables(self) -> Sequence[_builtins.str]:
|
|
71
70
|
"""
|
|
72
71
|
A set of services which are unavailable to the account in a region.
|
|
73
72
|
"""
|
|
@@ -86,7 +85,7 @@ class AwaitableGetAccountAvailabilityResult(GetAccountAvailabilityResult):
|
|
|
86
85
|
unavailables=self.unavailables)
|
|
87
86
|
|
|
88
87
|
|
|
89
|
-
def get_account_availability(region: Optional[
|
|
88
|
+
def get_account_availability(region: Optional[_builtins.str] = None,
|
|
90
89
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountAvailabilityResult:
|
|
91
90
|
"""
|
|
92
91
|
Provides details about service availability in a region to an account specifically.
|
|
@@ -104,7 +103,7 @@ def get_account_availability(region: Optional[builtins.str] = None,
|
|
|
104
103
|
```
|
|
105
104
|
|
|
106
105
|
|
|
107
|
-
:param
|
|
106
|
+
:param _builtins.str region: The region ID.
|
|
108
107
|
"""
|
|
109
108
|
__args__ = dict()
|
|
110
109
|
__args__['region'] = region
|
|
@@ -116,7 +115,7 @@ def get_account_availability(region: Optional[builtins.str] = None,
|
|
|
116
115
|
id=pulumi.get(__ret__, 'id'),
|
|
117
116
|
region=pulumi.get(__ret__, 'region'),
|
|
118
117
|
unavailables=pulumi.get(__ret__, 'unavailables'))
|
|
119
|
-
def get_account_availability_output(region: Optional[pulumi.Input[
|
|
118
|
+
def get_account_availability_output(region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
120
119
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountAvailabilityResult]:
|
|
121
120
|
"""
|
|
122
121
|
Provides details about service availability in a region to an account specifically.
|
|
@@ -134,7 +133,7 @@ def get_account_availability_output(region: Optional[pulumi.Input[builtins.str]]
|
|
|
134
133
|
```
|
|
135
134
|
|
|
136
135
|
|
|
137
|
-
:param
|
|
136
|
+
:param _builtins.str region: The region ID.
|
|
138
137
|
"""
|
|
139
138
|
__args__ = dict()
|
|
140
139
|
__args__['region'] = region
|