pulumi-linode 5.1.0a1752810302__py3-none-any.whl → 5.1.1a1753933550__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-linode might be problematic. Click here for more details.

Files changed (125) hide show
  1. pulumi_linode/__init__.py +1 -1
  2. pulumi_linode/_inputs.py +5169 -5170
  3. pulumi_linode/account_settings.py +70 -71
  4. pulumi_linode/config/__init__.py +1 -1
  5. pulumi_linode/config/__init__.pyi +1 -2
  6. pulumi_linode/config/vars.py +21 -22
  7. pulumi_linode/database_access_controls.py +52 -53
  8. pulumi_linode/database_mysql.py +247 -248
  9. pulumi_linode/database_mysql_v2.py +782 -783
  10. pulumi_linode/database_postgresql.py +273 -274
  11. pulumi_linode/database_postgresql_v2.py +1105 -1106
  12. pulumi_linode/domain.py +222 -223
  13. pulumi_linode/domain_record.py +188 -189
  14. pulumi_linode/firewall.py +155 -156
  15. pulumi_linode/firewall_device.py +70 -71
  16. pulumi_linode/get_account.py +33 -34
  17. pulumi_linode/get_account_availabilities.py +5 -6
  18. pulumi_linode/get_account_availability.py +13 -14
  19. pulumi_linode/get_account_login.py +17 -18
  20. pulumi_linode/get_account_logins.py +5 -6
  21. pulumi_linode/get_account_settings.py +13 -14
  22. pulumi_linode/get_child_account.py +37 -38
  23. pulumi_linode/get_child_accounts.py +5 -6
  24. pulumi_linode/get_database_backups.py +35 -36
  25. pulumi_linode/get_database_engines.py +23 -24
  26. pulumi_linode/get_database_mysql.py +52 -53
  27. pulumi_linode/get_database_mysql_backups.py +29 -30
  28. pulumi_linode/get_database_mysql_config.py +5 -6
  29. pulumi_linode/get_database_mysql_v2.py +115 -116
  30. pulumi_linode/get_database_postgresql.py +56 -57
  31. pulumi_linode/get_database_postgresql_config.py +7 -8
  32. pulumi_linode/get_database_postgresql_v2.py +153 -154
  33. pulumi_linode/get_databases.py +17 -18
  34. pulumi_linode/get_domain.py +37 -38
  35. pulumi_linode/get_domain_record.py +37 -38
  36. pulumi_linode/get_domain_zonefile.py +11 -12
  37. pulumi_linode/get_domains.py +17 -18
  38. pulumi_linode/get_firewall.py +30 -31
  39. pulumi_linode/get_firewalls.py +17 -18
  40. pulumi_linode/get_image.py +36 -37
  41. pulumi_linode/get_images.py +23 -24
  42. pulumi_linode/get_instance_backups.py +12 -13
  43. pulumi_linode/get_instance_networking.py +11 -12
  44. pulumi_linode/get_instance_type.py +30 -31
  45. pulumi_linode/get_instance_types.py +17 -18
  46. pulumi_linode/get_instances.py +17 -18
  47. pulumi_linode/get_ipv6_range.py +17 -18
  48. pulumi_linode/get_ipv6_ranges.py +5 -6
  49. pulumi_linode/get_kernel.py +23 -24
  50. pulumi_linode/get_kernels.py +17 -18
  51. pulumi_linode/get_linode_object_storage_bucket.py +33 -34
  52. pulumi_linode/get_lke_cluster.py +33 -34
  53. pulumi_linode/get_lke_clusters.py +17 -18
  54. pulumi_linode/get_lke_types.py +17 -18
  55. pulumi_linode/get_lke_version.py +13 -14
  56. pulumi_linode/get_lke_versions.py +10 -11
  57. pulumi_linode/get_nb_types.py +13 -14
  58. pulumi_linode/get_network_transfer_prices.py +17 -18
  59. pulumi_linode/get_networking_ip.py +28 -29
  60. pulumi_linode/get_networking_ips.py +17 -18
  61. pulumi_linode/get_node_balancer.py +29 -30
  62. pulumi_linode/get_node_balancer_config.py +48 -49
  63. pulumi_linode/get_node_balancer_node.py +29 -30
  64. pulumi_linode/get_nodebalancer_configs.py +23 -24
  65. pulumi_linode/get_nodebalancers.py +17 -18
  66. pulumi_linode/get_object_storage_cluster.py +15 -16
  67. pulumi_linode/get_object_storage_endpoints.py +17 -18
  68. pulumi_linode/get_object_storage_quota.py +22 -23
  69. pulumi_linode/get_object_storage_quotas.py +5 -6
  70. pulumi_linode/get_placement_group.py +19 -20
  71. pulumi_linode/get_placement_groups.py +13 -14
  72. pulumi_linode/get_profile.py +22 -23
  73. pulumi_linode/get_region.py +19 -20
  74. pulumi_linode/get_regions.py +5 -6
  75. pulumi_linode/get_ssh_key.py +17 -18
  76. pulumi_linode/get_sshkeys.py +17 -18
  77. pulumi_linode/get_stack_script.py +32 -33
  78. pulumi_linode/get_stack_scripts.py +23 -24
  79. pulumi_linode/get_user.py +35 -36
  80. pulumi_linode/get_users.py +17 -18
  81. pulumi_linode/get_vlans.py +17 -18
  82. pulumi_linode/get_volume.py +27 -28
  83. pulumi_linode/get_volume_types.py +17 -18
  84. pulumi_linode/get_volumes.py +17 -18
  85. pulumi_linode/get_vpc.py +17 -18
  86. pulumi_linode/get_vpc_ips.py +11 -12
  87. pulumi_linode/get_vpc_subnet.py +22 -23
  88. pulumi_linode/get_vpc_subnets.py +11 -12
  89. pulumi_linode/get_vpcs.py +5 -6
  90. pulumi_linode/image.py +292 -293
  91. pulumi_linode/instance.py +520 -521
  92. pulumi_linode/instance_config.py +166 -167
  93. pulumi_linode/instance_disk.py +210 -211
  94. pulumi_linode/instance_ip.py +125 -126
  95. pulumi_linode/instance_shared_ips.py +35 -36
  96. pulumi_linode/ipv6_range.py +88 -89
  97. pulumi_linode/lke_cluster.py +162 -163
  98. pulumi_linode/lke_node_pool.py +137 -138
  99. pulumi_linode/networking_ip.py +133 -134
  100. pulumi_linode/networking_ip_assignment.py +21 -22
  101. pulumi_linode/node_balancer.py +152 -153
  102. pulumi_linode/node_balancer_config.py +319 -320
  103. pulumi_linode/node_balancer_node.py +112 -113
  104. pulumi_linode/object_storage_bucket.py +195 -196
  105. pulumi_linode/object_storage_key.py +67 -68
  106. pulumi_linode/object_storage_object.py +350 -351
  107. pulumi_linode/outputs.py +5305 -5306
  108. pulumi_linode/placement_group.py +80 -81
  109. pulumi_linode/placement_group_assignment.py +48 -49
  110. pulumi_linode/provider.py +180 -181
  111. pulumi_linode/pulumi-plugin.json +1 -1
  112. pulumi_linode/rdns.py +55 -56
  113. pulumi_linode/reserved_ip_assignment.py +142 -143
  114. pulumi_linode/ssh_key.py +44 -45
  115. pulumi_linode/stack_script.py +159 -160
  116. pulumi_linode/token.py +70 -71
  117. pulumi_linode/user.py +112 -113
  118. pulumi_linode/volume.py +141 -142
  119. pulumi_linode/vpc.py +70 -71
  120. pulumi_linode/vpc_subnet.py +72 -73
  121. {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/METADATA +1 -1
  122. pulumi_linode-5.1.1a1753933550.dist-info/RECORD +126 -0
  123. pulumi_linode-5.1.0a1752810302.dist-info/RECORD +0 -126
  124. {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/WHEEL +0 -0
  125. {pulumi_linode-5.1.0a1752810302.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -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[builtins.str]:
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) -> builtins.str:
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) -> builtins.bool:
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) -> builtins.str:
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) -> builtins.bool:
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) -> builtins.str:
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) -> builtins.bool:
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) -> builtins.str:
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) -> builtins.bool:
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) -> builtins.str:
144
+ def username(self) -> _builtins.str:
146
145
  """
147
146
  The username for logging in to Linode services.
148
147
  """
@@ -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[builtins.str]:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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[builtins.str] = None,
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 builtins.str id: The code name of the region to select.
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[builtins.str]] = None,
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 builtins.str id: The code name of the region to select.
184
+ :param _builtins.str id: The code name of the region to select.
186
185
  """
187
186
  __args__ = dict()
188
187
  __args__['id'] = id
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -40,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) -> builtins.str:
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")
@@ -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) -> builtins.str:
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[builtins.str]:
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) -> builtins.str:
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) -> builtins.str:
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[builtins.str] = None,
87
- label: Optional[builtins.str] = None,
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 builtins.str id: The ID of the SSH Key
106
- :param builtins.str label: The label of the SSH Key to select.
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[builtins.str]]] = None,
120
- label: Optional[pulumi.Input[builtins.str]] = None,
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 builtins.str id: The ID of the SSH Key
139
- :param builtins.str label: The label of the SSH Key to select.
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
@@ -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) -> builtins.str:
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[builtins.str]:
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[builtins.str]:
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[builtins.str] = None,
93
- order_by: Optional[builtins.str] = None,
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 builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
132
- :param builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
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[builtins.str]]] = None,
150
- order_by: Optional[pulumi.Input[Optional[builtins.str]]] = None,
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 builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
189
- :param builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
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) -> builtins.str:
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) -> builtins.int:
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) -> builtins.int:
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) -> builtins.str:
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) -> builtins.str:
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[builtins.str]:
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) -> builtins.bool:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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) -> builtins.str:
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[builtins.str] = None,
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 builtins.str id: The unique numeric ID of the StackScript to query.
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[builtins.str]] = None,
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 builtins.str id: The unique numeric ID of the StackScript to query.
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