pulumi-linode 5.2.0a1752905257__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.0a1752905257.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.0a1752905257.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
pulumi_linode/get_profile.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
|
|
@@ -63,52 +62,52 @@ class GetProfileResult:
|
|
|
63
62
|
raise TypeError("Expected argument 'username' to be a str")
|
|
64
63
|
pulumi.set(__self__, "username", username)
|
|
65
64
|
|
|
66
|
-
@property
|
|
65
|
+
@_builtins.property
|
|
67
66
|
@pulumi.getter(name="authorizedKeys")
|
|
68
|
-
def authorized_keys(self) -> Sequence[
|
|
67
|
+
def authorized_keys(self) -> Sequence[_builtins.str]:
|
|
69
68
|
"""
|
|
70
69
|
The list of SSH Keys authorized to use Lish for this user. This value is ignored if lish_auth_method is 'disabled'.
|
|
71
70
|
"""
|
|
72
71
|
return pulumi.get(self, "authorized_keys")
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def email(self) ->
|
|
75
|
+
def email(self) -> _builtins.str:
|
|
77
76
|
"""
|
|
78
77
|
The profile email address. This address will be used for communication with Linode as necessary.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "email")
|
|
81
80
|
|
|
82
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
83
82
|
@pulumi.getter(name="emailNotifications")
|
|
84
|
-
def email_notifications(self) ->
|
|
83
|
+
def email_notifications(self) -> _builtins.bool:
|
|
85
84
|
"""
|
|
86
85
|
If true, email notifications will be sent about account activity. If false, when false business-critical communications may still be sent through email.
|
|
87
86
|
"""
|
|
88
87
|
return pulumi.get(self, "email_notifications")
|
|
89
88
|
|
|
90
|
-
@property
|
|
89
|
+
@_builtins.property
|
|
91
90
|
@pulumi.getter
|
|
92
|
-
def id(self) ->
|
|
91
|
+
def id(self) -> _builtins.str:
|
|
93
92
|
return pulumi.get(self, "id")
|
|
94
93
|
|
|
95
|
-
@property
|
|
94
|
+
@_builtins.property
|
|
96
95
|
@pulumi.getter(name="ipWhitelistEnabled")
|
|
97
|
-
def ip_whitelist_enabled(self) ->
|
|
96
|
+
def ip_whitelist_enabled(self) -> _builtins.bool:
|
|
98
97
|
"""
|
|
99
98
|
If true, logins for the user will only be allowed from whitelisted IPs. This setting is currently deprecated, and cannot be enabled.
|
|
100
99
|
"""
|
|
101
100
|
return pulumi.get(self, "ip_whitelist_enabled")
|
|
102
101
|
|
|
103
|
-
@property
|
|
102
|
+
@_builtins.property
|
|
104
103
|
@pulumi.getter(name="lishAuthMethod")
|
|
105
|
-
def lish_auth_method(self) ->
|
|
104
|
+
def lish_auth_method(self) -> _builtins.str:
|
|
106
105
|
"""
|
|
107
106
|
The methods of authentication allowed when connecting via Lish. 'keys_only' is the most secure with the intent to use Lish, and 'disabled' is recommended for users that will not use Lish at all.
|
|
108
107
|
"""
|
|
109
108
|
return pulumi.get(self, "lish_auth_method")
|
|
110
109
|
|
|
111
|
-
@property
|
|
110
|
+
@_builtins.property
|
|
112
111
|
@pulumi.getter
|
|
113
112
|
def referrals(self) -> Sequence['outputs.GetProfileReferralResult']:
|
|
114
113
|
"""
|
|
@@ -116,33 +115,33 @@ class GetProfileResult:
|
|
|
116
115
|
"""
|
|
117
116
|
return pulumi.get(self, "referrals")
|
|
118
117
|
|
|
119
|
-
@property
|
|
118
|
+
@_builtins.property
|
|
120
119
|
@pulumi.getter
|
|
121
|
-
def restricted(self) ->
|
|
120
|
+
def restricted(self) -> _builtins.bool:
|
|
122
121
|
"""
|
|
123
122
|
If true, the user has restrictions on what can be accessed on the Account.
|
|
124
123
|
"""
|
|
125
124
|
return pulumi.get(self, "restricted")
|
|
126
125
|
|
|
127
|
-
@property
|
|
126
|
+
@_builtins.property
|
|
128
127
|
@pulumi.getter
|
|
129
|
-
def timezone(self) ->
|
|
128
|
+
def timezone(self) -> _builtins.str:
|
|
130
129
|
"""
|
|
131
130
|
The profile's preferred timezone. This is not used by the API, and is for the benefit of clients only. All times the API returns are in UTC.
|
|
132
131
|
"""
|
|
133
132
|
return pulumi.get(self, "timezone")
|
|
134
133
|
|
|
135
|
-
@property
|
|
134
|
+
@_builtins.property
|
|
136
135
|
@pulumi.getter(name="twoFactorAuth")
|
|
137
|
-
def two_factor_auth(self) ->
|
|
136
|
+
def two_factor_auth(self) -> _builtins.bool:
|
|
138
137
|
"""
|
|
139
138
|
If true, logins from untrusted computers will require Two Factor Authentication.
|
|
140
139
|
"""
|
|
141
140
|
return pulumi.get(self, "two_factor_auth")
|
|
142
141
|
|
|
143
|
-
@property
|
|
142
|
+
@_builtins.property
|
|
144
143
|
@pulumi.getter
|
|
145
|
-
def username(self) ->
|
|
144
|
+
def username(self) -> _builtins.str:
|
|
146
145
|
"""
|
|
147
146
|
The username for logging in to Linode services.
|
|
148
147
|
"""
|
pulumi_linode/get_region.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
|
|
@@ -55,56 +54,56 @@ class GetRegionResult:
|
|
|
55
54
|
raise TypeError("Expected argument 'status' to be a str")
|
|
56
55
|
pulumi.set(__self__, "status", status)
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
|
-
def capabilities(self) -> Sequence[
|
|
59
|
+
def capabilities(self) -> Sequence[_builtins.str]:
|
|
61
60
|
"""
|
|
62
61
|
A list of capabilities of this region.
|
|
63
62
|
"""
|
|
64
63
|
return pulumi.get(self, "capabilities")
|
|
65
64
|
|
|
66
|
-
@property
|
|
65
|
+
@_builtins.property
|
|
67
66
|
@pulumi.getter
|
|
68
|
-
def country(self) ->
|
|
67
|
+
def country(self) -> _builtins.str:
|
|
69
68
|
"""
|
|
70
69
|
The country the region resides in.
|
|
71
70
|
"""
|
|
72
71
|
return pulumi.get(self, "country")
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def id(self) ->
|
|
75
|
+
def id(self) -> _builtins.str:
|
|
77
76
|
return pulumi.get(self, "id")
|
|
78
77
|
|
|
79
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
80
79
|
@pulumi.getter
|
|
81
|
-
def label(self) ->
|
|
80
|
+
def label(self) -> _builtins.str:
|
|
82
81
|
"""
|
|
83
82
|
Detailed location information for this Region, including city, state or region, and country.
|
|
84
83
|
"""
|
|
85
84
|
return pulumi.get(self, "label")
|
|
86
85
|
|
|
87
|
-
@property
|
|
86
|
+
@_builtins.property
|
|
88
87
|
@pulumi.getter(name="placementGroupLimits")
|
|
89
88
|
def placement_group_limits(self) -> Sequence['outputs.GetRegionPlacementGroupLimitResult']:
|
|
90
89
|
return pulumi.get(self, "placement_group_limits")
|
|
91
90
|
|
|
92
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
93
92
|
@pulumi.getter
|
|
94
93
|
def resolvers(self) -> Optional[Sequence['outputs.GetRegionResolverResult']]:
|
|
95
94
|
return pulumi.get(self, "resolvers")
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter(name="siteType")
|
|
99
|
-
def site_type(self) ->
|
|
98
|
+
def site_type(self) -> _builtins.str:
|
|
100
99
|
"""
|
|
101
100
|
The type of this region.
|
|
102
101
|
"""
|
|
103
102
|
return pulumi.get(self, "site_type")
|
|
104
103
|
|
|
105
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
106
105
|
@pulumi.getter
|
|
107
|
-
def status(self) ->
|
|
106
|
+
def status(self) -> _builtins.str:
|
|
108
107
|
"""
|
|
109
108
|
This region’s current operational status (ok or outage).
|
|
110
109
|
"""
|
|
@@ -127,7 +126,7 @@ class AwaitableGetRegionResult(GetRegionResult):
|
|
|
127
126
|
status=self.status)
|
|
128
127
|
|
|
129
128
|
|
|
130
|
-
def get_region(id: Optional[
|
|
129
|
+
def get_region(id: Optional[_builtins.str] = None,
|
|
131
130
|
resolvers: Optional[Sequence[Union['GetRegionResolverArgs', 'GetRegionResolverArgsDict']]] = None,
|
|
132
131
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegionResult:
|
|
133
132
|
"""
|
|
@@ -146,7 +145,7 @@ def get_region(id: Optional[builtins.str] = None,
|
|
|
146
145
|
```
|
|
147
146
|
|
|
148
147
|
|
|
149
|
-
:param
|
|
148
|
+
:param _builtins.str id: The code name of the region to select.
|
|
150
149
|
"""
|
|
151
150
|
__args__ = dict()
|
|
152
151
|
__args__['id'] = id
|
|
@@ -163,7 +162,7 @@ def get_region(id: Optional[builtins.str] = None,
|
|
|
163
162
|
resolvers=pulumi.get(__ret__, 'resolvers'),
|
|
164
163
|
site_type=pulumi.get(__ret__, 'site_type'),
|
|
165
164
|
status=pulumi.get(__ret__, 'status'))
|
|
166
|
-
def get_region_output(id: Optional[pulumi.Input[
|
|
165
|
+
def get_region_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
167
166
|
resolvers: Optional[pulumi.Input[Optional[Sequence[Union['GetRegionResolverArgs', 'GetRegionResolverArgsDict']]]]] = None,
|
|
168
167
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegionResult]:
|
|
169
168
|
"""
|
|
@@ -182,7 +181,7 @@ def get_region_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
182
181
|
```
|
|
183
182
|
|
|
184
183
|
|
|
185
|
-
:param
|
|
184
|
+
:param _builtins.str id: The code name of the region to select.
|
|
186
185
|
"""
|
|
187
186
|
__args__ = dict()
|
|
188
187
|
__args__['id'] = id
|
pulumi_linode/get_regions.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
|
|
@@ -40,17 +39,17 @@ class GetRegionsResult:
|
|
|
40
39
|
raise TypeError("Expected argument 'regions' to be a list")
|
|
41
40
|
pulumi.set(__self__, "regions", regions)
|
|
42
41
|
|
|
43
|
-
@property
|
|
42
|
+
@_builtins.property
|
|
44
43
|
@pulumi.getter
|
|
45
44
|
def filters(self) -> Optional[Sequence['outputs.GetRegionsFilterResult']]:
|
|
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
|
return pulumi.get(self, "id")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter
|
|
55
54
|
def regions(self) -> Optional[Sequence['outputs.GetRegionsRegionResult']]:
|
|
56
55
|
return pulumi.get(self, "regions")
|
pulumi_linode/get_ssh_key.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
|
|
@@ -41,30 +40,30 @@ class GetSshKeyResult:
|
|
|
41
40
|
raise TypeError("Expected argument 'ssh_key' to be a str")
|
|
42
41
|
pulumi.set(__self__, "ssh_key", ssh_key)
|
|
43
42
|
|
|
44
|
-
@property
|
|
43
|
+
@_builtins.property
|
|
45
44
|
@pulumi.getter
|
|
46
|
-
def created(self) ->
|
|
45
|
+
def created(self) -> _builtins.str:
|
|
47
46
|
"""
|
|
48
47
|
The date this key was added.
|
|
49
48
|
"""
|
|
50
49
|
return pulumi.get(self, "created")
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
|
-
def id(self) -> Optional[
|
|
53
|
+
def id(self) -> Optional[_builtins.str]:
|
|
55
54
|
"""
|
|
56
55
|
The ID of the SSH Key
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "id")
|
|
59
58
|
|
|
60
|
-
@property
|
|
59
|
+
@_builtins.property
|
|
61
60
|
@pulumi.getter
|
|
62
|
-
def label(self) ->
|
|
61
|
+
def label(self) -> _builtins.str:
|
|
63
62
|
return pulumi.get(self, "label")
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter(name="sshKey")
|
|
67
|
-
def ssh_key(self) ->
|
|
66
|
+
def ssh_key(self) -> _builtins.str:
|
|
68
67
|
"""
|
|
69
68
|
The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
|
|
70
69
|
"""
|
|
@@ -83,8 +82,8 @@ class AwaitableGetSshKeyResult(GetSshKeyResult):
|
|
|
83
82
|
ssh_key=self.ssh_key)
|
|
84
83
|
|
|
85
84
|
|
|
86
|
-
def get_ssh_key(id: Optional[
|
|
87
|
-
label: Optional[
|
|
85
|
+
def get_ssh_key(id: Optional[_builtins.str] = None,
|
|
86
|
+
label: Optional[_builtins.str] = None,
|
|
88
87
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSshKeyResult:
|
|
89
88
|
"""
|
|
90
89
|
`SshKey` provides access to a specifically labeled SSH Key in the Profile of the User identified by the access token.
|
|
@@ -102,8 +101,8 @@ def get_ssh_key(id: Optional[builtins.str] = None,
|
|
|
102
101
|
```
|
|
103
102
|
|
|
104
103
|
|
|
105
|
-
:param
|
|
106
|
-
:param
|
|
104
|
+
:param _builtins.str id: The ID of the SSH Key
|
|
105
|
+
:param _builtins.str label: The label of the SSH Key to select.
|
|
107
106
|
"""
|
|
108
107
|
__args__ = dict()
|
|
109
108
|
__args__['id'] = id
|
|
@@ -116,8 +115,8 @@ def get_ssh_key(id: Optional[builtins.str] = None,
|
|
|
116
115
|
id=pulumi.get(__ret__, 'id'),
|
|
117
116
|
label=pulumi.get(__ret__, 'label'),
|
|
118
117
|
ssh_key=pulumi.get(__ret__, 'ssh_key'))
|
|
119
|
-
def get_ssh_key_output(id: Optional[pulumi.Input[Optional[
|
|
120
|
-
label: Optional[pulumi.Input[
|
|
118
|
+
def get_ssh_key_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
119
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
121
120
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSshKeyResult]:
|
|
122
121
|
"""
|
|
123
122
|
`SshKey` provides access to a specifically labeled SSH Key in the Profile of the User identified by the access token.
|
|
@@ -135,8 +134,8 @@ def get_ssh_key_output(id: Optional[pulumi.Input[Optional[builtins.str]]] = None
|
|
|
135
134
|
```
|
|
136
135
|
|
|
137
136
|
|
|
138
|
-
:param
|
|
139
|
-
:param
|
|
137
|
+
:param _builtins.str id: The ID of the SSH Key
|
|
138
|
+
:param _builtins.str label: The label of the SSH Key to select.
|
|
140
139
|
"""
|
|
141
140
|
__args__ = dict()
|
|
142
141
|
__args__['id'] = id
|
pulumi_linode/get_sshkeys.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 GetSshkeysResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'sshkeys' to be a list")
|
|
47
46
|
pulumi.set(__self__, "sshkeys", sshkeys)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def filters(self) -> Optional[Sequence['outputs.GetSshkeysFilterResult']]:
|
|
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 the SSH Key.
|
|
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 sshkeys(self) -> Optional[Sequence['outputs.GetSshkeysSshkeyResult']]:
|
|
75
74
|
return pulumi.get(self, "sshkeys")
|
|
@@ -89,8 +88,8 @@ class AwaitableGetSshkeysResult(GetSshkeysResult):
|
|
|
89
88
|
|
|
90
89
|
|
|
91
90
|
def get_sshkeys(filters: Optional[Sequence[Union['GetSshkeysFilterArgs', 'GetSshkeysFilterArgsDict']]] = None,
|
|
92
|
-
order: Optional[
|
|
93
|
-
order_by: Optional[
|
|
91
|
+
order: Optional[_builtins.str] = None,
|
|
92
|
+
order_by: Optional[_builtins.str] = None,
|
|
94
93
|
sshkeys: Optional[Sequence[Union['GetSshkeysSshkeyArgs', 'GetSshkeysSshkeyArgsDict']]] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSshkeysResult:
|
|
96
95
|
"""
|
|
@@ -128,8 +127,8 @@ def get_sshkeys(filters: Optional[Sequence[Union['GetSshkeysFilterArgs', 'GetSsh
|
|
|
128
127
|
* `ssh_key`
|
|
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_sshkeys(filters: Optional[Sequence[Union['GetSshkeysFilterArgs', 'GetSsh
|
|
|
146
145
|
order_by=pulumi.get(__ret__, 'order_by'),
|
|
147
146
|
sshkeys=pulumi.get(__ret__, 'sshkeys'))
|
|
148
147
|
def get_sshkeys_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSshkeysFilterArgs', 'GetSshkeysFilterArgsDict']]]]] = 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
|
sshkeys: Optional[pulumi.Input[Optional[Sequence[Union['GetSshkeysSshkeyArgs', 'GetSshkeysSshkeyArgsDict']]]]] = None,
|
|
152
151
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSshkeysResult]:
|
|
153
152
|
"""
|
|
@@ -185,8 +184,8 @@ def get_sshkeys_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['G
|
|
|
185
184
|
* `ssh_key`
|
|
186
185
|
|
|
187
186
|
|
|
188
|
-
:param
|
|
189
|
-
:param
|
|
187
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
188
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
190
189
|
"""
|
|
191
190
|
__args__ = dict()
|
|
192
191
|
__args__['filters'] = filters
|
|
@@ -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
|
|
@@ -72,92 +71,92 @@ class GetStackScriptResult:
|
|
|
72
71
|
raise TypeError("Expected argument 'username' to be a str")
|
|
73
72
|
pulumi.set(__self__, "username", username)
|
|
74
73
|
|
|
75
|
-
@property
|
|
74
|
+
@_builtins.property
|
|
76
75
|
@pulumi.getter
|
|
77
|
-
def created(self) ->
|
|
76
|
+
def created(self) -> _builtins.str:
|
|
78
77
|
"""
|
|
79
78
|
The date this StackScript was created.
|
|
80
79
|
"""
|
|
81
80
|
return pulumi.get(self, "created")
|
|
82
81
|
|
|
83
|
-
@property
|
|
82
|
+
@_builtins.property
|
|
84
83
|
@pulumi.getter(name="deploymentsActive")
|
|
85
|
-
def deployments_active(self) ->
|
|
84
|
+
def deployments_active(self) -> _builtins.int:
|
|
86
85
|
"""
|
|
87
86
|
Count of currently active, deployed Linodes created from this StackScript.
|
|
88
87
|
"""
|
|
89
88
|
return pulumi.get(self, "deployments_active")
|
|
90
89
|
|
|
91
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
92
91
|
@pulumi.getter(name="deploymentsTotal")
|
|
93
|
-
def deployments_total(self) ->
|
|
92
|
+
def deployments_total(self) -> _builtins.int:
|
|
94
93
|
"""
|
|
95
94
|
The total number of times this StackScript has been deployed.
|
|
96
95
|
"""
|
|
97
96
|
return pulumi.get(self, "deployments_total")
|
|
98
97
|
|
|
99
|
-
@property
|
|
98
|
+
@_builtins.property
|
|
100
99
|
@pulumi.getter
|
|
101
|
-
def description(self) ->
|
|
100
|
+
def description(self) -> _builtins.str:
|
|
102
101
|
"""
|
|
103
102
|
A description for the StackScript.
|
|
104
103
|
"""
|
|
105
104
|
return pulumi.get(self, "description")
|
|
106
105
|
|
|
107
|
-
@property
|
|
106
|
+
@_builtins.property
|
|
108
107
|
@pulumi.getter
|
|
109
|
-
def id(self) ->
|
|
108
|
+
def id(self) -> _builtins.str:
|
|
110
109
|
return pulumi.get(self, "id")
|
|
111
110
|
|
|
112
|
-
@property
|
|
111
|
+
@_builtins.property
|
|
113
112
|
@pulumi.getter
|
|
114
|
-
def images(self) -> Sequence[
|
|
113
|
+
def images(self) -> Sequence[_builtins.str]:
|
|
115
114
|
"""
|
|
116
115
|
A set of Image IDs representing the Images that this StackScript is compatible for deploying with. `any/all` indicates that all available image distributions, including private images, are accepted.
|
|
117
116
|
"""
|
|
118
117
|
return pulumi.get(self, "images")
|
|
119
118
|
|
|
120
|
-
@property
|
|
119
|
+
@_builtins.property
|
|
121
120
|
@pulumi.getter(name="isPublic")
|
|
122
|
-
def is_public(self) ->
|
|
121
|
+
def is_public(self) -> _builtins.bool:
|
|
123
122
|
"""
|
|
124
123
|
This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private.
|
|
125
124
|
"""
|
|
126
125
|
return pulumi.get(self, "is_public")
|
|
127
126
|
|
|
128
|
-
@property
|
|
127
|
+
@_builtins.property
|
|
129
128
|
@pulumi.getter
|
|
130
|
-
def label(self) ->
|
|
129
|
+
def label(self) -> _builtins.str:
|
|
131
130
|
"""
|
|
132
131
|
A human-readable label for the field that will serve as the input prompt for entering the value during deployment.
|
|
133
132
|
"""
|
|
134
133
|
return pulumi.get(self, "label")
|
|
135
134
|
|
|
136
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
137
136
|
@pulumi.getter(name="revNote")
|
|
138
|
-
def rev_note(self) ->
|
|
137
|
+
def rev_note(self) -> _builtins.str:
|
|
139
138
|
"""
|
|
140
139
|
This field allows you to add notes for the set of revisions made to this StackScript.
|
|
141
140
|
"""
|
|
142
141
|
return pulumi.get(self, "rev_note")
|
|
143
142
|
|
|
144
|
-
@property
|
|
143
|
+
@_builtins.property
|
|
145
144
|
@pulumi.getter
|
|
146
|
-
def script(self) ->
|
|
145
|
+
def script(self) -> _builtins.str:
|
|
147
146
|
"""
|
|
148
147
|
The script to execute when provisioning a new Linode with this StackScript.
|
|
149
148
|
"""
|
|
150
149
|
return pulumi.get(self, "script")
|
|
151
150
|
|
|
152
|
-
@property
|
|
151
|
+
@_builtins.property
|
|
153
152
|
@pulumi.getter
|
|
154
|
-
def updated(self) ->
|
|
153
|
+
def updated(self) -> _builtins.str:
|
|
155
154
|
"""
|
|
156
155
|
The date this StackScript was updated.
|
|
157
156
|
"""
|
|
158
157
|
return pulumi.get(self, "updated")
|
|
159
158
|
|
|
160
|
-
@property
|
|
159
|
+
@_builtins.property
|
|
161
160
|
@pulumi.getter(name="userDefinedFields")
|
|
162
161
|
def user_defined_fields(self) -> Sequence['outputs.GetStackScriptUserDefinedFieldResult']:
|
|
163
162
|
"""
|
|
@@ -165,17 +164,17 @@ class GetStackScriptResult:
|
|
|
165
164
|
"""
|
|
166
165
|
return pulumi.get(self, "user_defined_fields")
|
|
167
166
|
|
|
168
|
-
@property
|
|
167
|
+
@_builtins.property
|
|
169
168
|
@pulumi.getter(name="userGravatarId")
|
|
170
|
-
def user_gravatar_id(self) ->
|
|
169
|
+
def user_gravatar_id(self) -> _builtins.str:
|
|
171
170
|
"""
|
|
172
171
|
The Gravatar ID for the User who created the StackScript.
|
|
173
172
|
"""
|
|
174
173
|
return pulumi.get(self, "user_gravatar_id")
|
|
175
174
|
|
|
176
|
-
@property
|
|
175
|
+
@_builtins.property
|
|
177
176
|
@pulumi.getter
|
|
178
|
-
def username(self) ->
|
|
177
|
+
def username(self) -> _builtins.str:
|
|
179
178
|
"""
|
|
180
179
|
The User who created the StackScript.
|
|
181
180
|
"""
|
|
@@ -204,7 +203,7 @@ class AwaitableGetStackScriptResult(GetStackScriptResult):
|
|
|
204
203
|
username=self.username)
|
|
205
204
|
|
|
206
205
|
|
|
207
|
-
def get_stack_script(id: Optional[
|
|
206
|
+
def get_stack_script(id: Optional[_builtins.str] = None,
|
|
208
207
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStackScriptResult:
|
|
209
208
|
"""
|
|
210
209
|
Provides details about a specific Linode StackScript.
|
|
@@ -222,7 +221,7 @@ def get_stack_script(id: Optional[builtins.str] = None,
|
|
|
222
221
|
```
|
|
223
222
|
|
|
224
223
|
|
|
225
|
-
:param
|
|
224
|
+
:param _builtins.str id: The unique numeric ID of the StackScript to query.
|
|
226
225
|
"""
|
|
227
226
|
__args__ = dict()
|
|
228
227
|
__args__['id'] = id
|
|
@@ -244,7 +243,7 @@ def get_stack_script(id: Optional[builtins.str] = None,
|
|
|
244
243
|
user_defined_fields=pulumi.get(__ret__, 'user_defined_fields'),
|
|
245
244
|
user_gravatar_id=pulumi.get(__ret__, 'user_gravatar_id'),
|
|
246
245
|
username=pulumi.get(__ret__, 'username'))
|
|
247
|
-
def get_stack_script_output(id: Optional[pulumi.Input[
|
|
246
|
+
def get_stack_script_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
248
247
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStackScriptResult]:
|
|
249
248
|
"""
|
|
250
249
|
Provides details about a specific Linode StackScript.
|
|
@@ -262,7 +261,7 @@ def get_stack_script_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
262
261
|
```
|
|
263
262
|
|
|
264
263
|
|
|
265
|
-
:param
|
|
264
|
+
:param _builtins.str id: The unique numeric ID of the StackScript to query.
|
|
266
265
|
"""
|
|
267
266
|
__args__ = dict()
|
|
268
267
|
__args__['id'] = id
|