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/stack_script.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
|
|
@@ -22,22 +21,22 @@ __all__ = ['StackScriptArgs', 'StackScript']
|
|
|
22
21
|
@pulumi.input_type
|
|
23
22
|
class StackScriptArgs:
|
|
24
23
|
def __init__(__self__, *,
|
|
25
|
-
description: pulumi.Input[
|
|
26
|
-
images: pulumi.Input[Sequence[pulumi.Input[
|
|
27
|
-
label: pulumi.Input[
|
|
28
|
-
script: pulumi.Input[
|
|
29
|
-
is_public: Optional[pulumi.Input[
|
|
30
|
-
rev_note: Optional[pulumi.Input[
|
|
24
|
+
description: pulumi.Input[_builtins.str],
|
|
25
|
+
images: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
26
|
+
label: pulumi.Input[_builtins.str],
|
|
27
|
+
script: pulumi.Input[_builtins.str],
|
|
28
|
+
is_public: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29
|
+
rev_note: Optional[pulumi.Input[_builtins.str]] = None):
|
|
31
30
|
"""
|
|
32
31
|
The set of arguments for constructing a StackScript resource.
|
|
33
|
-
:param pulumi.Input[
|
|
34
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
32
|
+
:param pulumi.Input[_builtins.str] description: A description for the StackScript.
|
|
33
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: 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. Currently private image IDs are not supported.
|
|
35
34
|
|
|
36
35
|
- - -
|
|
37
|
-
:param pulumi.Input[
|
|
38
|
-
:param pulumi.Input[
|
|
39
|
-
:param pulumi.Input[
|
|
40
|
-
:param pulumi.Input[
|
|
36
|
+
:param pulumi.Input[_builtins.str] label: The StackScript's label is for display purposes only.
|
|
37
|
+
:param pulumi.Input[_builtins.str] script: The script to execute when provisioning a new Linode with this StackScript.
|
|
38
|
+
:param pulumi.Input[_builtins.bool] is_public: This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
39
|
+
:param pulumi.Input[_builtins.str] rev_note: This field allows you to add notes for the set of revisions made to this StackScript.
|
|
41
40
|
"""
|
|
42
41
|
pulumi.set(__self__, "description", description)
|
|
43
42
|
pulumi.set(__self__, "images", images)
|
|
@@ -48,21 +47,21 @@ class StackScriptArgs:
|
|
|
48
47
|
if rev_note is not None:
|
|
49
48
|
pulumi.set(__self__, "rev_note", rev_note)
|
|
50
49
|
|
|
51
|
-
@property
|
|
50
|
+
@_builtins.property
|
|
52
51
|
@pulumi.getter
|
|
53
|
-
def description(self) -> pulumi.Input[
|
|
52
|
+
def description(self) -> pulumi.Input[_builtins.str]:
|
|
54
53
|
"""
|
|
55
54
|
A description for the StackScript.
|
|
56
55
|
"""
|
|
57
56
|
return pulumi.get(self, "description")
|
|
58
57
|
|
|
59
58
|
@description.setter
|
|
60
|
-
def description(self, value: pulumi.Input[
|
|
59
|
+
def description(self, value: pulumi.Input[_builtins.str]):
|
|
61
60
|
pulumi.set(self, "description", value)
|
|
62
61
|
|
|
63
|
-
@property
|
|
62
|
+
@_builtins.property
|
|
64
63
|
@pulumi.getter
|
|
65
|
-
def images(self) -> pulumi.Input[Sequence[pulumi.Input[
|
|
64
|
+
def images(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
66
65
|
"""
|
|
67
66
|
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. Currently private image IDs are not supported.
|
|
68
67
|
|
|
@@ -71,91 +70,91 @@ class StackScriptArgs:
|
|
|
71
70
|
return pulumi.get(self, "images")
|
|
72
71
|
|
|
73
72
|
@images.setter
|
|
74
|
-
def images(self, value: pulumi.Input[Sequence[pulumi.Input[
|
|
73
|
+
def images(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
75
74
|
pulumi.set(self, "images", value)
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter
|
|
79
|
-
def label(self) -> pulumi.Input[
|
|
78
|
+
def label(self) -> pulumi.Input[_builtins.str]:
|
|
80
79
|
"""
|
|
81
80
|
The StackScript's label is for display purposes only.
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "label")
|
|
84
83
|
|
|
85
84
|
@label.setter
|
|
86
|
-
def label(self, value: pulumi.Input[
|
|
85
|
+
def label(self, value: pulumi.Input[_builtins.str]):
|
|
87
86
|
pulumi.set(self, "label", value)
|
|
88
87
|
|
|
89
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
90
89
|
@pulumi.getter
|
|
91
|
-
def script(self) -> pulumi.Input[
|
|
90
|
+
def script(self) -> pulumi.Input[_builtins.str]:
|
|
92
91
|
"""
|
|
93
92
|
The script to execute when provisioning a new Linode with this StackScript.
|
|
94
93
|
"""
|
|
95
94
|
return pulumi.get(self, "script")
|
|
96
95
|
|
|
97
96
|
@script.setter
|
|
98
|
-
def script(self, value: pulumi.Input[
|
|
97
|
+
def script(self, value: pulumi.Input[_builtins.str]):
|
|
99
98
|
pulumi.set(self, "script", value)
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter(name="isPublic")
|
|
103
|
-
def is_public(self) -> Optional[pulumi.Input[
|
|
102
|
+
def is_public(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
104
103
|
"""
|
|
105
104
|
This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
106
105
|
"""
|
|
107
106
|
return pulumi.get(self, "is_public")
|
|
108
107
|
|
|
109
108
|
@is_public.setter
|
|
110
|
-
def is_public(self, value: Optional[pulumi.Input[
|
|
109
|
+
def is_public(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
111
110
|
pulumi.set(self, "is_public", value)
|
|
112
111
|
|
|
113
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
114
113
|
@pulumi.getter(name="revNote")
|
|
115
|
-
def rev_note(self) -> Optional[pulumi.Input[
|
|
114
|
+
def rev_note(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
116
115
|
"""
|
|
117
116
|
This field allows you to add notes for the set of revisions made to this StackScript.
|
|
118
117
|
"""
|
|
119
118
|
return pulumi.get(self, "rev_note")
|
|
120
119
|
|
|
121
120
|
@rev_note.setter
|
|
122
|
-
def rev_note(self, value: Optional[pulumi.Input[
|
|
121
|
+
def rev_note(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
123
122
|
pulumi.set(self, "rev_note", value)
|
|
124
123
|
|
|
125
124
|
|
|
126
125
|
@pulumi.input_type
|
|
127
126
|
class _StackScriptState:
|
|
128
127
|
def __init__(__self__, *,
|
|
129
|
-
created: Optional[pulumi.Input[
|
|
130
|
-
deployments_active: Optional[pulumi.Input[
|
|
131
|
-
deployments_total: Optional[pulumi.Input[
|
|
132
|
-
description: Optional[pulumi.Input[
|
|
133
|
-
images: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
134
|
-
is_public: Optional[pulumi.Input[
|
|
135
|
-
label: Optional[pulumi.Input[
|
|
136
|
-
rev_note: Optional[pulumi.Input[
|
|
137
|
-
script: Optional[pulumi.Input[
|
|
138
|
-
updated: Optional[pulumi.Input[
|
|
128
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
129
|
+
deployments_active: Optional[pulumi.Input[_builtins.int]] = None,
|
|
130
|
+
deployments_total: Optional[pulumi.Input[_builtins.int]] = None,
|
|
131
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
132
|
+
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
133
|
+
is_public: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
134
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135
|
+
rev_note: Optional[pulumi.Input[_builtins.str]] = None,
|
|
136
|
+
script: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
139
138
|
user_defined_fields: Optional[pulumi.Input[Sequence[pulumi.Input['StackScriptUserDefinedFieldArgs']]]] = None,
|
|
140
|
-
user_gravatar_id: Optional[pulumi.Input[
|
|
141
|
-
username: Optional[pulumi.Input[
|
|
139
|
+
user_gravatar_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
140
|
+
username: Optional[pulumi.Input[_builtins.str]] = None):
|
|
142
141
|
"""
|
|
143
142
|
Input properties used for looking up and filtering StackScript resources.
|
|
144
|
-
:param pulumi.Input[
|
|
145
|
-
:param pulumi.Input[
|
|
146
|
-
:param pulumi.Input[
|
|
147
|
-
:param pulumi.Input[
|
|
148
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
143
|
+
:param pulumi.Input[_builtins.str] created: The date this StackScript was created.
|
|
144
|
+
:param pulumi.Input[_builtins.int] deployments_active: Count of currently active, deployed Linodes created from this StackScript.
|
|
145
|
+
:param pulumi.Input[_builtins.int] deployments_total: The total number of times this StackScript has been deployed.
|
|
146
|
+
:param pulumi.Input[_builtins.str] description: A description for the StackScript.
|
|
147
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: 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. Currently private image IDs are not supported.
|
|
149
148
|
|
|
150
149
|
- - -
|
|
151
|
-
:param pulumi.Input[
|
|
152
|
-
:param pulumi.Input[
|
|
153
|
-
:param pulumi.Input[
|
|
154
|
-
:param pulumi.Input[
|
|
155
|
-
:param pulumi.Input[
|
|
150
|
+
:param pulumi.Input[_builtins.bool] is_public: This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
151
|
+
:param pulumi.Input[_builtins.str] label: The StackScript's label is for display purposes only.
|
|
152
|
+
:param pulumi.Input[_builtins.str] rev_note: This field allows you to add notes for the set of revisions made to this StackScript.
|
|
153
|
+
:param pulumi.Input[_builtins.str] script: The script to execute when provisioning a new Linode with this StackScript.
|
|
154
|
+
:param pulumi.Input[_builtins.str] updated: The date this StackScript was updated.
|
|
156
155
|
:param pulumi.Input[Sequence[pulumi.Input['StackScriptUserDefinedFieldArgs']]] user_defined_fields: This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment.
|
|
157
|
-
:param pulumi.Input[
|
|
158
|
-
:param pulumi.Input[
|
|
156
|
+
:param pulumi.Input[_builtins.str] user_gravatar_id: The Gravatar ID for the User who created the StackScript.
|
|
157
|
+
:param pulumi.Input[_builtins.str] username: The User who created the StackScript.
|
|
159
158
|
"""
|
|
160
159
|
if created is not None:
|
|
161
160
|
pulumi.set(__self__, "created", created)
|
|
@@ -184,57 +183,57 @@ class _StackScriptState:
|
|
|
184
183
|
if username is not None:
|
|
185
184
|
pulumi.set(__self__, "username", username)
|
|
186
185
|
|
|
187
|
-
@property
|
|
186
|
+
@_builtins.property
|
|
188
187
|
@pulumi.getter
|
|
189
|
-
def created(self) -> Optional[pulumi.Input[
|
|
188
|
+
def created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
190
189
|
"""
|
|
191
190
|
The date this StackScript was created.
|
|
192
191
|
"""
|
|
193
192
|
return pulumi.get(self, "created")
|
|
194
193
|
|
|
195
194
|
@created.setter
|
|
196
|
-
def created(self, value: Optional[pulumi.Input[
|
|
195
|
+
def created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
197
196
|
pulumi.set(self, "created", value)
|
|
198
197
|
|
|
199
|
-
@property
|
|
198
|
+
@_builtins.property
|
|
200
199
|
@pulumi.getter(name="deploymentsActive")
|
|
201
|
-
def deployments_active(self) -> Optional[pulumi.Input[
|
|
200
|
+
def deployments_active(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
202
201
|
"""
|
|
203
202
|
Count of currently active, deployed Linodes created from this StackScript.
|
|
204
203
|
"""
|
|
205
204
|
return pulumi.get(self, "deployments_active")
|
|
206
205
|
|
|
207
206
|
@deployments_active.setter
|
|
208
|
-
def deployments_active(self, value: Optional[pulumi.Input[
|
|
207
|
+
def deployments_active(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
209
208
|
pulumi.set(self, "deployments_active", value)
|
|
210
209
|
|
|
211
|
-
@property
|
|
210
|
+
@_builtins.property
|
|
212
211
|
@pulumi.getter(name="deploymentsTotal")
|
|
213
|
-
def deployments_total(self) -> Optional[pulumi.Input[
|
|
212
|
+
def deployments_total(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
214
213
|
"""
|
|
215
214
|
The total number of times this StackScript has been deployed.
|
|
216
215
|
"""
|
|
217
216
|
return pulumi.get(self, "deployments_total")
|
|
218
217
|
|
|
219
218
|
@deployments_total.setter
|
|
220
|
-
def deployments_total(self, value: Optional[pulumi.Input[
|
|
219
|
+
def deployments_total(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
221
220
|
pulumi.set(self, "deployments_total", value)
|
|
222
221
|
|
|
223
|
-
@property
|
|
222
|
+
@_builtins.property
|
|
224
223
|
@pulumi.getter
|
|
225
|
-
def description(self) -> Optional[pulumi.Input[
|
|
224
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
226
225
|
"""
|
|
227
226
|
A description for the StackScript.
|
|
228
227
|
"""
|
|
229
228
|
return pulumi.get(self, "description")
|
|
230
229
|
|
|
231
230
|
@description.setter
|
|
232
|
-
def description(self, value: Optional[pulumi.Input[
|
|
231
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
233
232
|
pulumi.set(self, "description", value)
|
|
234
233
|
|
|
235
|
-
@property
|
|
234
|
+
@_builtins.property
|
|
236
235
|
@pulumi.getter
|
|
237
|
-
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
236
|
+
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
238
237
|
"""
|
|
239
238
|
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. Currently private image IDs are not supported.
|
|
240
239
|
|
|
@@ -243,70 +242,70 @@ class _StackScriptState:
|
|
|
243
242
|
return pulumi.get(self, "images")
|
|
244
243
|
|
|
245
244
|
@images.setter
|
|
246
|
-
def images(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
245
|
+
def images(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
247
246
|
pulumi.set(self, "images", value)
|
|
248
247
|
|
|
249
|
-
@property
|
|
248
|
+
@_builtins.property
|
|
250
249
|
@pulumi.getter(name="isPublic")
|
|
251
|
-
def is_public(self) -> Optional[pulumi.Input[
|
|
250
|
+
def is_public(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
252
251
|
"""
|
|
253
252
|
This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
254
253
|
"""
|
|
255
254
|
return pulumi.get(self, "is_public")
|
|
256
255
|
|
|
257
256
|
@is_public.setter
|
|
258
|
-
def is_public(self, value: Optional[pulumi.Input[
|
|
257
|
+
def is_public(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
259
258
|
pulumi.set(self, "is_public", value)
|
|
260
259
|
|
|
261
|
-
@property
|
|
260
|
+
@_builtins.property
|
|
262
261
|
@pulumi.getter
|
|
263
|
-
def label(self) -> Optional[pulumi.Input[
|
|
262
|
+
def label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
264
263
|
"""
|
|
265
264
|
The StackScript's label is for display purposes only.
|
|
266
265
|
"""
|
|
267
266
|
return pulumi.get(self, "label")
|
|
268
267
|
|
|
269
268
|
@label.setter
|
|
270
|
-
def label(self, value: Optional[pulumi.Input[
|
|
269
|
+
def label(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
271
270
|
pulumi.set(self, "label", value)
|
|
272
271
|
|
|
273
|
-
@property
|
|
272
|
+
@_builtins.property
|
|
274
273
|
@pulumi.getter(name="revNote")
|
|
275
|
-
def rev_note(self) -> Optional[pulumi.Input[
|
|
274
|
+
def rev_note(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
276
275
|
"""
|
|
277
276
|
This field allows you to add notes for the set of revisions made to this StackScript.
|
|
278
277
|
"""
|
|
279
278
|
return pulumi.get(self, "rev_note")
|
|
280
279
|
|
|
281
280
|
@rev_note.setter
|
|
282
|
-
def rev_note(self, value: Optional[pulumi.Input[
|
|
281
|
+
def rev_note(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
283
282
|
pulumi.set(self, "rev_note", value)
|
|
284
283
|
|
|
285
|
-
@property
|
|
284
|
+
@_builtins.property
|
|
286
285
|
@pulumi.getter
|
|
287
|
-
def script(self) -> Optional[pulumi.Input[
|
|
286
|
+
def script(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
288
287
|
"""
|
|
289
288
|
The script to execute when provisioning a new Linode with this StackScript.
|
|
290
289
|
"""
|
|
291
290
|
return pulumi.get(self, "script")
|
|
292
291
|
|
|
293
292
|
@script.setter
|
|
294
|
-
def script(self, value: Optional[pulumi.Input[
|
|
293
|
+
def script(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
295
294
|
pulumi.set(self, "script", value)
|
|
296
295
|
|
|
297
|
-
@property
|
|
296
|
+
@_builtins.property
|
|
298
297
|
@pulumi.getter
|
|
299
|
-
def updated(self) -> Optional[pulumi.Input[
|
|
298
|
+
def updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
300
299
|
"""
|
|
301
300
|
The date this StackScript was updated.
|
|
302
301
|
"""
|
|
303
302
|
return pulumi.get(self, "updated")
|
|
304
303
|
|
|
305
304
|
@updated.setter
|
|
306
|
-
def updated(self, value: Optional[pulumi.Input[
|
|
305
|
+
def updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
307
306
|
pulumi.set(self, "updated", value)
|
|
308
307
|
|
|
309
|
-
@property
|
|
308
|
+
@_builtins.property
|
|
310
309
|
@pulumi.getter(name="userDefinedFields")
|
|
311
310
|
def user_defined_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['StackScriptUserDefinedFieldArgs']]]]:
|
|
312
311
|
"""
|
|
@@ -318,28 +317,28 @@ class _StackScriptState:
|
|
|
318
317
|
def user_defined_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StackScriptUserDefinedFieldArgs']]]]):
|
|
319
318
|
pulumi.set(self, "user_defined_fields", value)
|
|
320
319
|
|
|
321
|
-
@property
|
|
320
|
+
@_builtins.property
|
|
322
321
|
@pulumi.getter(name="userGravatarId")
|
|
323
|
-
def user_gravatar_id(self) -> Optional[pulumi.Input[
|
|
322
|
+
def user_gravatar_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
324
323
|
"""
|
|
325
324
|
The Gravatar ID for the User who created the StackScript.
|
|
326
325
|
"""
|
|
327
326
|
return pulumi.get(self, "user_gravatar_id")
|
|
328
327
|
|
|
329
328
|
@user_gravatar_id.setter
|
|
330
|
-
def user_gravatar_id(self, value: Optional[pulumi.Input[
|
|
329
|
+
def user_gravatar_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
331
330
|
pulumi.set(self, "user_gravatar_id", value)
|
|
332
331
|
|
|
333
|
-
@property
|
|
332
|
+
@_builtins.property
|
|
334
333
|
@pulumi.getter
|
|
335
|
-
def username(self) -> Optional[pulumi.Input[
|
|
334
|
+
def username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
336
335
|
"""
|
|
337
336
|
The User who created the StackScript.
|
|
338
337
|
"""
|
|
339
338
|
return pulumi.get(self, "username")
|
|
340
339
|
|
|
341
340
|
@username.setter
|
|
342
|
-
def username(self, value: Optional[pulumi.Input[
|
|
341
|
+
def username(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
343
342
|
pulumi.set(self, "username", value)
|
|
344
343
|
|
|
345
344
|
|
|
@@ -349,12 +348,12 @@ class StackScript(pulumi.CustomResource):
|
|
|
349
348
|
def __init__(__self__,
|
|
350
349
|
resource_name: str,
|
|
351
350
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
352
|
-
description: Optional[pulumi.Input[
|
|
353
|
-
images: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
354
|
-
is_public: Optional[pulumi.Input[
|
|
355
|
-
label: Optional[pulumi.Input[
|
|
356
|
-
rev_note: Optional[pulumi.Input[
|
|
357
|
-
script: Optional[pulumi.Input[
|
|
351
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
352
|
+
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
353
|
+
is_public: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
354
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
355
|
+
rev_note: Optional[pulumi.Input[_builtins.str]] = None,
|
|
356
|
+
script: Optional[pulumi.Input[_builtins.str]] = None,
|
|
358
357
|
__props__=None):
|
|
359
358
|
"""
|
|
360
359
|
Provides a Linode StackScript resource. This can be used to create, modify, and delete Linode StackScripts. StackScripts are private or public managed scripts which run within an instance during startup. StackScripts can include variables whose values are specified when the Instance is created.
|
|
@@ -404,14 +403,14 @@ class StackScript(pulumi.CustomResource):
|
|
|
404
403
|
|
|
405
404
|
:param str resource_name: The name of the resource.
|
|
406
405
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
407
|
-
:param pulumi.Input[
|
|
408
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
406
|
+
:param pulumi.Input[_builtins.str] description: A description for the StackScript.
|
|
407
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: 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. Currently private image IDs are not supported.
|
|
409
408
|
|
|
410
409
|
- - -
|
|
411
|
-
:param pulumi.Input[
|
|
412
|
-
:param pulumi.Input[
|
|
413
|
-
:param pulumi.Input[
|
|
414
|
-
:param pulumi.Input[
|
|
410
|
+
:param pulumi.Input[_builtins.bool] is_public: This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
411
|
+
:param pulumi.Input[_builtins.str] label: The StackScript's label is for display purposes only.
|
|
412
|
+
:param pulumi.Input[_builtins.str] rev_note: This field allows you to add notes for the set of revisions made to this StackScript.
|
|
413
|
+
:param pulumi.Input[_builtins.str] script: The script to execute when provisioning a new Linode with this StackScript.
|
|
415
414
|
"""
|
|
416
415
|
...
|
|
417
416
|
@overload
|
|
@@ -480,12 +479,12 @@ class StackScript(pulumi.CustomResource):
|
|
|
480
479
|
def _internal_init(__self__,
|
|
481
480
|
resource_name: str,
|
|
482
481
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
483
|
-
description: Optional[pulumi.Input[
|
|
484
|
-
images: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
485
|
-
is_public: Optional[pulumi.Input[
|
|
486
|
-
label: Optional[pulumi.Input[
|
|
487
|
-
rev_note: Optional[pulumi.Input[
|
|
488
|
-
script: Optional[pulumi.Input[
|
|
482
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
483
|
+
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
484
|
+
is_public: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
485
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
486
|
+
rev_note: Optional[pulumi.Input[_builtins.str]] = None,
|
|
487
|
+
script: Optional[pulumi.Input[_builtins.str]] = None,
|
|
489
488
|
__props__=None):
|
|
490
489
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
491
490
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -526,19 +525,19 @@ class StackScript(pulumi.CustomResource):
|
|
|
526
525
|
def get(resource_name: str,
|
|
527
526
|
id: pulumi.Input[str],
|
|
528
527
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
529
|
-
created: Optional[pulumi.Input[
|
|
530
|
-
deployments_active: Optional[pulumi.Input[
|
|
531
|
-
deployments_total: Optional[pulumi.Input[
|
|
532
|
-
description: Optional[pulumi.Input[
|
|
533
|
-
images: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
534
|
-
is_public: Optional[pulumi.Input[
|
|
535
|
-
label: Optional[pulumi.Input[
|
|
536
|
-
rev_note: Optional[pulumi.Input[
|
|
537
|
-
script: Optional[pulumi.Input[
|
|
538
|
-
updated: Optional[pulumi.Input[
|
|
528
|
+
created: Optional[pulumi.Input[_builtins.str]] = None,
|
|
529
|
+
deployments_active: Optional[pulumi.Input[_builtins.int]] = None,
|
|
530
|
+
deployments_total: Optional[pulumi.Input[_builtins.int]] = None,
|
|
531
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
532
|
+
images: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
533
|
+
is_public: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
534
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
535
|
+
rev_note: Optional[pulumi.Input[_builtins.str]] = None,
|
|
536
|
+
script: Optional[pulumi.Input[_builtins.str]] = None,
|
|
537
|
+
updated: Optional[pulumi.Input[_builtins.str]] = None,
|
|
539
538
|
user_defined_fields: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StackScriptUserDefinedFieldArgs', 'StackScriptUserDefinedFieldArgsDict']]]]] = None,
|
|
540
|
-
user_gravatar_id: Optional[pulumi.Input[
|
|
541
|
-
username: Optional[pulumi.Input[
|
|
539
|
+
user_gravatar_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
540
|
+
username: Optional[pulumi.Input[_builtins.str]] = None) -> 'StackScript':
|
|
542
541
|
"""
|
|
543
542
|
Get an existing StackScript resource's state with the given name, id, and optional extra
|
|
544
543
|
properties used to qualify the lookup.
|
|
@@ -546,21 +545,21 @@ class StackScript(pulumi.CustomResource):
|
|
|
546
545
|
:param str resource_name: The unique name of the resulting resource.
|
|
547
546
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
548
547
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
549
|
-
:param pulumi.Input[
|
|
550
|
-
:param pulumi.Input[
|
|
551
|
-
:param pulumi.Input[
|
|
552
|
-
:param pulumi.Input[
|
|
553
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
548
|
+
:param pulumi.Input[_builtins.str] created: The date this StackScript was created.
|
|
549
|
+
:param pulumi.Input[_builtins.int] deployments_active: Count of currently active, deployed Linodes created from this StackScript.
|
|
550
|
+
:param pulumi.Input[_builtins.int] deployments_total: The total number of times this StackScript has been deployed.
|
|
551
|
+
:param pulumi.Input[_builtins.str] description: A description for the StackScript.
|
|
552
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] images: 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. Currently private image IDs are not supported.
|
|
554
553
|
|
|
555
554
|
- - -
|
|
556
|
-
:param pulumi.Input[
|
|
557
|
-
:param pulumi.Input[
|
|
558
|
-
:param pulumi.Input[
|
|
559
|
-
:param pulumi.Input[
|
|
560
|
-
:param pulumi.Input[
|
|
555
|
+
:param pulumi.Input[_builtins.bool] is_public: This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
556
|
+
:param pulumi.Input[_builtins.str] label: The StackScript's label is for display purposes only.
|
|
557
|
+
:param pulumi.Input[_builtins.str] rev_note: This field allows you to add notes for the set of revisions made to this StackScript.
|
|
558
|
+
:param pulumi.Input[_builtins.str] script: The script to execute when provisioning a new Linode with this StackScript.
|
|
559
|
+
:param pulumi.Input[_builtins.str] updated: The date this StackScript was updated.
|
|
561
560
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StackScriptUserDefinedFieldArgs', 'StackScriptUserDefinedFieldArgsDict']]]] user_defined_fields: This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment.
|
|
562
|
-
:param pulumi.Input[
|
|
563
|
-
:param pulumi.Input[
|
|
561
|
+
:param pulumi.Input[_builtins.str] user_gravatar_id: The Gravatar ID for the User who created the StackScript.
|
|
562
|
+
:param pulumi.Input[_builtins.str] username: The User who created the StackScript.
|
|
564
563
|
"""
|
|
565
564
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
566
565
|
|
|
@@ -581,41 +580,41 @@ class StackScript(pulumi.CustomResource):
|
|
|
581
580
|
__props__.__dict__["username"] = username
|
|
582
581
|
return StackScript(resource_name, opts=opts, __props__=__props__)
|
|
583
582
|
|
|
584
|
-
@property
|
|
583
|
+
@_builtins.property
|
|
585
584
|
@pulumi.getter
|
|
586
|
-
def created(self) -> pulumi.Output[
|
|
585
|
+
def created(self) -> pulumi.Output[_builtins.str]:
|
|
587
586
|
"""
|
|
588
587
|
The date this StackScript was created.
|
|
589
588
|
"""
|
|
590
589
|
return pulumi.get(self, "created")
|
|
591
590
|
|
|
592
|
-
@property
|
|
591
|
+
@_builtins.property
|
|
593
592
|
@pulumi.getter(name="deploymentsActive")
|
|
594
|
-
def deployments_active(self) -> pulumi.Output[
|
|
593
|
+
def deployments_active(self) -> pulumi.Output[_builtins.int]:
|
|
595
594
|
"""
|
|
596
595
|
Count of currently active, deployed Linodes created from this StackScript.
|
|
597
596
|
"""
|
|
598
597
|
return pulumi.get(self, "deployments_active")
|
|
599
598
|
|
|
600
|
-
@property
|
|
599
|
+
@_builtins.property
|
|
601
600
|
@pulumi.getter(name="deploymentsTotal")
|
|
602
|
-
def deployments_total(self) -> pulumi.Output[
|
|
601
|
+
def deployments_total(self) -> pulumi.Output[_builtins.int]:
|
|
603
602
|
"""
|
|
604
603
|
The total number of times this StackScript has been deployed.
|
|
605
604
|
"""
|
|
606
605
|
return pulumi.get(self, "deployments_total")
|
|
607
606
|
|
|
608
|
-
@property
|
|
607
|
+
@_builtins.property
|
|
609
608
|
@pulumi.getter
|
|
610
|
-
def description(self) -> pulumi.Output[
|
|
609
|
+
def description(self) -> pulumi.Output[_builtins.str]:
|
|
611
610
|
"""
|
|
612
611
|
A description for the StackScript.
|
|
613
612
|
"""
|
|
614
613
|
return pulumi.get(self, "description")
|
|
615
614
|
|
|
616
|
-
@property
|
|
615
|
+
@_builtins.property
|
|
617
616
|
@pulumi.getter
|
|
618
|
-
def images(self) -> pulumi.Output[Sequence[
|
|
617
|
+
def images(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
619
618
|
"""
|
|
620
619
|
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. Currently private image IDs are not supported.
|
|
621
620
|
|
|
@@ -623,47 +622,47 @@ class StackScript(pulumi.CustomResource):
|
|
|
623
622
|
"""
|
|
624
623
|
return pulumi.get(self, "images")
|
|
625
624
|
|
|
626
|
-
@property
|
|
625
|
+
@_builtins.property
|
|
627
626
|
@pulumi.getter(name="isPublic")
|
|
628
|
-
def is_public(self) -> pulumi.Output[
|
|
627
|
+
def is_public(self) -> pulumi.Output[_builtins.bool]:
|
|
629
628
|
"""
|
|
630
629
|
This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. *Changing `is_public` forces the creation of a new StackScript*
|
|
631
630
|
"""
|
|
632
631
|
return pulumi.get(self, "is_public")
|
|
633
632
|
|
|
634
|
-
@property
|
|
633
|
+
@_builtins.property
|
|
635
634
|
@pulumi.getter
|
|
636
|
-
def label(self) -> pulumi.Output[
|
|
635
|
+
def label(self) -> pulumi.Output[_builtins.str]:
|
|
637
636
|
"""
|
|
638
637
|
The StackScript's label is for display purposes only.
|
|
639
638
|
"""
|
|
640
639
|
return pulumi.get(self, "label")
|
|
641
640
|
|
|
642
|
-
@property
|
|
641
|
+
@_builtins.property
|
|
643
642
|
@pulumi.getter(name="revNote")
|
|
644
|
-
def rev_note(self) -> pulumi.Output[
|
|
643
|
+
def rev_note(self) -> pulumi.Output[_builtins.str]:
|
|
645
644
|
"""
|
|
646
645
|
This field allows you to add notes for the set of revisions made to this StackScript.
|
|
647
646
|
"""
|
|
648
647
|
return pulumi.get(self, "rev_note")
|
|
649
648
|
|
|
650
|
-
@property
|
|
649
|
+
@_builtins.property
|
|
651
650
|
@pulumi.getter
|
|
652
|
-
def script(self) -> pulumi.Output[
|
|
651
|
+
def script(self) -> pulumi.Output[_builtins.str]:
|
|
653
652
|
"""
|
|
654
653
|
The script to execute when provisioning a new Linode with this StackScript.
|
|
655
654
|
"""
|
|
656
655
|
return pulumi.get(self, "script")
|
|
657
656
|
|
|
658
|
-
@property
|
|
657
|
+
@_builtins.property
|
|
659
658
|
@pulumi.getter
|
|
660
|
-
def updated(self) -> pulumi.Output[
|
|
659
|
+
def updated(self) -> pulumi.Output[_builtins.str]:
|
|
661
660
|
"""
|
|
662
661
|
The date this StackScript was updated.
|
|
663
662
|
"""
|
|
664
663
|
return pulumi.get(self, "updated")
|
|
665
664
|
|
|
666
|
-
@property
|
|
665
|
+
@_builtins.property
|
|
667
666
|
@pulumi.getter(name="userDefinedFields")
|
|
668
667
|
def user_defined_fields(self) -> pulumi.Output[Sequence['outputs.StackScriptUserDefinedField']]:
|
|
669
668
|
"""
|
|
@@ -671,17 +670,17 @@ class StackScript(pulumi.CustomResource):
|
|
|
671
670
|
"""
|
|
672
671
|
return pulumi.get(self, "user_defined_fields")
|
|
673
672
|
|
|
674
|
-
@property
|
|
673
|
+
@_builtins.property
|
|
675
674
|
@pulumi.getter(name="userGravatarId")
|
|
676
|
-
def user_gravatar_id(self) -> pulumi.Output[
|
|
675
|
+
def user_gravatar_id(self) -> pulumi.Output[_builtins.str]:
|
|
677
676
|
"""
|
|
678
677
|
The Gravatar ID for the User who created the StackScript.
|
|
679
678
|
"""
|
|
680
679
|
return pulumi.get(self, "user_gravatar_id")
|
|
681
680
|
|
|
682
|
-
@property
|
|
681
|
+
@_builtins.property
|
|
683
682
|
@pulumi.getter
|
|
684
|
-
def username(self) -> pulumi.Output[
|
|
683
|
+
def username(self) -> pulumi.Output[_builtins.str]:
|
|
685
684
|
"""
|
|
686
685
|
The User who created the StackScript.
|
|
687
686
|
"""
|