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
@@ -20,14 +19,14 @@ __all__ = ['AccountSettingsArgs', 'AccountSettings']
20
19
  @pulumi.input_type
21
20
  class AccountSettingsArgs:
22
21
  def __init__(__self__, *,
23
- backups_enabled: Optional[pulumi.Input[builtins.bool]] = None,
24
- longview_subscription: Optional[pulumi.Input[builtins.str]] = None,
25
- network_helper: Optional[pulumi.Input[builtins.bool]] = None):
22
+ backups_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
23
+ longview_subscription: Optional[pulumi.Input[_builtins.str]] = None,
24
+ network_helper: Optional[pulumi.Input[_builtins.bool]] = None):
26
25
  """
27
26
  The set of arguments for constructing a AccountSettings resource.
28
- :param pulumi.Input[builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
29
- :param pulumi.Input[builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
30
- :param pulumi.Input[builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
27
+ :param pulumi.Input[_builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
28
+ :param pulumi.Input[_builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
29
+ :param pulumi.Input[_builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
31
30
  """
32
31
  if backups_enabled is not None:
33
32
  pulumi.set(__self__, "backups_enabled", backups_enabled)
@@ -36,58 +35,58 @@ class AccountSettingsArgs:
36
35
  if network_helper is not None:
37
36
  pulumi.set(__self__, "network_helper", network_helper)
38
37
 
39
- @property
38
+ @_builtins.property
40
39
  @pulumi.getter(name="backupsEnabled")
41
- def backups_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
40
+ def backups_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
42
41
  """
43
42
  The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
44
43
  """
45
44
  return pulumi.get(self, "backups_enabled")
46
45
 
47
46
  @backups_enabled.setter
48
- def backups_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
47
+ def backups_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
49
48
  pulumi.set(self, "backups_enabled", value)
50
49
 
51
- @property
50
+ @_builtins.property
52
51
  @pulumi.getter(name="longviewSubscription")
53
- def longview_subscription(self) -> Optional[pulumi.Input[builtins.str]]:
52
+ def longview_subscription(self) -> Optional[pulumi.Input[_builtins.str]]:
54
53
  """
55
54
  The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
56
55
  """
57
56
  return pulumi.get(self, "longview_subscription")
58
57
 
59
58
  @longview_subscription.setter
60
- def longview_subscription(self, value: Optional[pulumi.Input[builtins.str]]):
59
+ def longview_subscription(self, value: Optional[pulumi.Input[_builtins.str]]):
61
60
  pulumi.set(self, "longview_subscription", value)
62
61
 
63
- @property
62
+ @_builtins.property
64
63
  @pulumi.getter(name="networkHelper")
65
- def network_helper(self) -> Optional[pulumi.Input[builtins.bool]]:
64
+ def network_helper(self) -> Optional[pulumi.Input[_builtins.bool]]:
66
65
  """
67
66
  Enables network helper across all users by default for new Linodes and Linode Configs.
68
67
  """
69
68
  return pulumi.get(self, "network_helper")
70
69
 
71
70
  @network_helper.setter
72
- def network_helper(self, value: Optional[pulumi.Input[builtins.bool]]):
71
+ def network_helper(self, value: Optional[pulumi.Input[_builtins.bool]]):
73
72
  pulumi.set(self, "network_helper", value)
74
73
 
75
74
 
76
75
  @pulumi.input_type
77
76
  class _AccountSettingsState:
78
77
  def __init__(__self__, *,
79
- backups_enabled: Optional[pulumi.Input[builtins.bool]] = None,
80
- longview_subscription: Optional[pulumi.Input[builtins.str]] = None,
81
- managed: Optional[pulumi.Input[builtins.bool]] = None,
82
- network_helper: Optional[pulumi.Input[builtins.bool]] = None,
83
- object_storage: Optional[pulumi.Input[builtins.str]] = None):
78
+ backups_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
79
+ longview_subscription: Optional[pulumi.Input[_builtins.str]] = None,
80
+ managed: Optional[pulumi.Input[_builtins.bool]] = None,
81
+ network_helper: Optional[pulumi.Input[_builtins.bool]] = None,
82
+ object_storage: Optional[pulumi.Input[_builtins.str]] = None):
84
83
  """
85
84
  Input properties used for looking up and filtering AccountSettings resources.
86
- :param pulumi.Input[builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
87
- :param pulumi.Input[builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
88
- :param pulumi.Input[builtins.bool] managed: Enables monitoring for connectivity, response, and total request time.
89
- :param pulumi.Input[builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
90
- :param pulumi.Input[builtins.str] object_storage: A string describing the status of this account's Object Storage service enrollment.
85
+ :param pulumi.Input[_builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
86
+ :param pulumi.Input[_builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
87
+ :param pulumi.Input[_builtins.bool] managed: Enables monitoring for connectivity, response, and total request time.
88
+ :param pulumi.Input[_builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
89
+ :param pulumi.Input[_builtins.str] object_storage: A string describing the status of this account's Object Storage service enrollment.
91
90
  """
92
91
  if backups_enabled is not None:
93
92
  pulumi.set(__self__, "backups_enabled", backups_enabled)
@@ -100,64 +99,64 @@ class _AccountSettingsState:
100
99
  if object_storage is not None:
101
100
  pulumi.set(__self__, "object_storage", object_storage)
102
101
 
103
- @property
102
+ @_builtins.property
104
103
  @pulumi.getter(name="backupsEnabled")
105
- def backups_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
104
+ def backups_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
106
105
  """
107
106
  The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
108
107
  """
109
108
  return pulumi.get(self, "backups_enabled")
110
109
 
111
110
  @backups_enabled.setter
112
- def backups_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
111
+ def backups_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
113
112
  pulumi.set(self, "backups_enabled", value)
114
113
 
115
- @property
114
+ @_builtins.property
116
115
  @pulumi.getter(name="longviewSubscription")
117
- def longview_subscription(self) -> Optional[pulumi.Input[builtins.str]]:
116
+ def longview_subscription(self) -> Optional[pulumi.Input[_builtins.str]]:
118
117
  """
119
118
  The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
120
119
  """
121
120
  return pulumi.get(self, "longview_subscription")
122
121
 
123
122
  @longview_subscription.setter
124
- def longview_subscription(self, value: Optional[pulumi.Input[builtins.str]]):
123
+ def longview_subscription(self, value: Optional[pulumi.Input[_builtins.str]]):
125
124
  pulumi.set(self, "longview_subscription", value)
126
125
 
127
- @property
126
+ @_builtins.property
128
127
  @pulumi.getter
129
- def managed(self) -> Optional[pulumi.Input[builtins.bool]]:
128
+ def managed(self) -> Optional[pulumi.Input[_builtins.bool]]:
130
129
  """
131
130
  Enables monitoring for connectivity, response, and total request time.
132
131
  """
133
132
  return pulumi.get(self, "managed")
134
133
 
135
134
  @managed.setter
136
- def managed(self, value: Optional[pulumi.Input[builtins.bool]]):
135
+ def managed(self, value: Optional[pulumi.Input[_builtins.bool]]):
137
136
  pulumi.set(self, "managed", value)
138
137
 
139
- @property
138
+ @_builtins.property
140
139
  @pulumi.getter(name="networkHelper")
141
- def network_helper(self) -> Optional[pulumi.Input[builtins.bool]]:
140
+ def network_helper(self) -> Optional[pulumi.Input[_builtins.bool]]:
142
141
  """
143
142
  Enables network helper across all users by default for new Linodes and Linode Configs.
144
143
  """
145
144
  return pulumi.get(self, "network_helper")
146
145
 
147
146
  @network_helper.setter
148
- def network_helper(self, value: Optional[pulumi.Input[builtins.bool]]):
147
+ def network_helper(self, value: Optional[pulumi.Input[_builtins.bool]]):
149
148
  pulumi.set(self, "network_helper", value)
150
149
 
151
- @property
150
+ @_builtins.property
152
151
  @pulumi.getter(name="objectStorage")
153
- def object_storage(self) -> Optional[pulumi.Input[builtins.str]]:
152
+ def object_storage(self) -> Optional[pulumi.Input[_builtins.str]]:
154
153
  """
155
154
  A string describing the status of this account's Object Storage service enrollment.
156
155
  """
157
156
  return pulumi.get(self, "object_storage")
158
157
 
159
158
  @object_storage.setter
160
- def object_storage(self, value: Optional[pulumi.Input[builtins.str]]):
159
+ def object_storage(self, value: Optional[pulumi.Input[_builtins.str]]):
161
160
  pulumi.set(self, "object_storage", value)
162
161
 
163
162
 
@@ -167,9 +166,9 @@ class AccountSettings(pulumi.CustomResource):
167
166
  def __init__(__self__,
168
167
  resource_name: str,
169
168
  opts: Optional[pulumi.ResourceOptions] = None,
170
- backups_enabled: Optional[pulumi.Input[builtins.bool]] = None,
171
- longview_subscription: Optional[pulumi.Input[builtins.str]] = None,
172
- network_helper: Optional[pulumi.Input[builtins.bool]] = None,
169
+ backups_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
170
+ longview_subscription: Optional[pulumi.Input[_builtins.str]] = None,
171
+ network_helper: Optional[pulumi.Input[_builtins.bool]] = None,
173
172
  __props__=None):
174
173
  """
175
174
  Manages the settings of a Linode account.
@@ -196,9 +195,9 @@ class AccountSettings(pulumi.CustomResource):
196
195
 
197
196
  :param str resource_name: The name of the resource.
198
197
  :param pulumi.ResourceOptions opts: Options for the resource.
199
- :param pulumi.Input[builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
200
- :param pulumi.Input[builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
201
- :param pulumi.Input[builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
198
+ :param pulumi.Input[_builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
199
+ :param pulumi.Input[_builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
200
+ :param pulumi.Input[_builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
202
201
  """
203
202
  ...
204
203
  @overload
@@ -244,9 +243,9 @@ class AccountSettings(pulumi.CustomResource):
244
243
  def _internal_init(__self__,
245
244
  resource_name: str,
246
245
  opts: Optional[pulumi.ResourceOptions] = None,
247
- backups_enabled: Optional[pulumi.Input[builtins.bool]] = None,
248
- longview_subscription: Optional[pulumi.Input[builtins.str]] = None,
249
- network_helper: Optional[pulumi.Input[builtins.bool]] = None,
246
+ backups_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
247
+ longview_subscription: Optional[pulumi.Input[_builtins.str]] = None,
248
+ network_helper: Optional[pulumi.Input[_builtins.bool]] = None,
250
249
  __props__=None):
251
250
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
252
251
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -271,11 +270,11 @@ class AccountSettings(pulumi.CustomResource):
271
270
  def get(resource_name: str,
272
271
  id: pulumi.Input[str],
273
272
  opts: Optional[pulumi.ResourceOptions] = None,
274
- backups_enabled: Optional[pulumi.Input[builtins.bool]] = None,
275
- longview_subscription: Optional[pulumi.Input[builtins.str]] = None,
276
- managed: Optional[pulumi.Input[builtins.bool]] = None,
277
- network_helper: Optional[pulumi.Input[builtins.bool]] = None,
278
- object_storage: Optional[pulumi.Input[builtins.str]] = None) -> 'AccountSettings':
273
+ backups_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
274
+ longview_subscription: Optional[pulumi.Input[_builtins.str]] = None,
275
+ managed: Optional[pulumi.Input[_builtins.bool]] = None,
276
+ network_helper: Optional[pulumi.Input[_builtins.bool]] = None,
277
+ object_storage: Optional[pulumi.Input[_builtins.str]] = None) -> 'AccountSettings':
279
278
  """
280
279
  Get an existing AccountSettings resource's state with the given name, id, and optional extra
281
280
  properties used to qualify the lookup.
@@ -283,11 +282,11 @@ class AccountSettings(pulumi.CustomResource):
283
282
  :param str resource_name: The unique name of the resulting resource.
284
283
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
285
284
  :param pulumi.ResourceOptions opts: Options for the resource.
286
- :param pulumi.Input[builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
287
- :param pulumi.Input[builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
288
- :param pulumi.Input[builtins.bool] managed: Enables monitoring for connectivity, response, and total request time.
289
- :param pulumi.Input[builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
290
- :param pulumi.Input[builtins.str] object_storage: A string describing the status of this account's Object Storage service enrollment.
285
+ :param pulumi.Input[_builtins.bool] backups_enabled: The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
286
+ :param pulumi.Input[_builtins.str] longview_subscription: The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
287
+ :param pulumi.Input[_builtins.bool] managed: Enables monitoring for connectivity, response, and total request time.
288
+ :param pulumi.Input[_builtins.bool] network_helper: Enables network helper across all users by default for new Linodes and Linode Configs.
289
+ :param pulumi.Input[_builtins.str] object_storage: A string describing the status of this account's Object Storage service enrollment.
291
290
  """
292
291
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
293
292
 
@@ -300,41 +299,41 @@ class AccountSettings(pulumi.CustomResource):
300
299
  __props__.__dict__["object_storage"] = object_storage
301
300
  return AccountSettings(resource_name, opts=opts, __props__=__props__)
302
301
 
303
- @property
302
+ @_builtins.property
304
303
  @pulumi.getter(name="backupsEnabled")
305
- def backups_enabled(self) -> pulumi.Output[builtins.bool]:
304
+ def backups_enabled(self) -> pulumi.Output[_builtins.bool]:
306
305
  """
307
306
  The account-wide backups default. If true, all Linodes created will automatically be enrolled in the Backups service. If false, Linodes will not be enrolled by default, but may still be enrolled on creation or later.
308
307
  """
309
308
  return pulumi.get(self, "backups_enabled")
310
309
 
311
- @property
310
+ @_builtins.property
312
311
  @pulumi.getter(name="longviewSubscription")
313
- def longview_subscription(self) -> pulumi.Output[builtins.str]:
312
+ def longview_subscription(self) -> pulumi.Output[_builtins.str]:
314
313
  """
315
314
  The Longview Pro tier you are currently subscribed to. The value must be a [Longview Subscription](https://techdocs.akamai.com/linode-api/reference/get-longview-subscriptions) ID or null for Longview Free.
316
315
  """
317
316
  return pulumi.get(self, "longview_subscription")
318
317
 
319
- @property
318
+ @_builtins.property
320
319
  @pulumi.getter
321
- def managed(self) -> pulumi.Output[builtins.bool]:
320
+ def managed(self) -> pulumi.Output[_builtins.bool]:
322
321
  """
323
322
  Enables monitoring for connectivity, response, and total request time.
324
323
  """
325
324
  return pulumi.get(self, "managed")
326
325
 
327
- @property
326
+ @_builtins.property
328
327
  @pulumi.getter(name="networkHelper")
329
- def network_helper(self) -> pulumi.Output[builtins.bool]:
328
+ def network_helper(self) -> pulumi.Output[_builtins.bool]:
330
329
  """
331
330
  Enables network helper across all users by default for new Linodes and Linode Configs.
332
331
  """
333
332
  return pulumi.get(self, "network_helper")
334
333
 
335
- @property
334
+ @_builtins.property
336
335
  @pulumi.getter(name="objectStorage")
337
- def object_storage(self) -> pulumi.Output[builtins.str]:
336
+ def object_storage(self) -> pulumi.Output[_builtins.str]:
338
337
  """
339
338
  A string describing the status of this account's Object Storage service enrollment.
340
339
  """
@@ -2,7 +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
5
+ import builtins as _builtins
6
6
  import sys
7
7
  from .vars import _ExportableConfig
8
8
 
@@ -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
@@ -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
@@ -21,98 +20,98 @@ __config__ = pulumi.Config('linode')
21
20
 
22
21
 
23
22
  class _ExportableConfig(types.ModuleType):
24
- @property
23
+ @_builtins.property
25
24
  def api_ca_path(self) -> Optional[str]:
26
25
  """
27
26
  The path to a Linode API CA file to trust.
28
27
  """
29
28
  return __config__.get('apiCaPath')
30
29
 
31
- @property
30
+ @_builtins.property
32
31
  def api_version(self) -> Optional[str]:
33
32
  """
34
33
  The version of Linode API.
35
34
  """
36
35
  return __config__.get('apiVersion') or _utilities.get_env('LINODE_API_VERSION')
37
36
 
38
- @property
37
+ @_builtins.property
39
38
  def config_path(self) -> Optional[str]:
40
39
  """
41
40
  The path to the Linode config file to use. (default `~/.config/linode`)
42
41
  """
43
42
  return __config__.get('configPath')
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  def config_profile(self) -> Optional[str]:
47
46
  """
48
47
  The Linode config profile to use. (default `default`)
49
48
  """
50
49
  return __config__.get('configProfile')
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  def disable_internal_cache(self) -> Optional[bool]:
54
53
  """
55
54
  Disable the internal caching system that backs certain Linode API requests.
56
55
  """
57
56
  return __config__.get_bool('disableInternalCache')
58
57
 
59
- @property
58
+ @_builtins.property
60
59
  def event_poll_ms(self) -> Optional[int]:
61
60
  """
62
61
  The rate in milliseconds to poll for events.
63
62
  """
64
63
  return __config__.get_int('eventPollMs')
65
64
 
66
- @property
65
+ @_builtins.property
67
66
  def lke_event_poll_ms(self) -> Optional[int]:
68
67
  """
69
68
  The rate in milliseconds to poll for LKE events.
70
69
  """
71
70
  return __config__.get_int('lkeEventPollMs')
72
71
 
73
- @property
72
+ @_builtins.property
74
73
  def lke_node_ready_poll_ms(self) -> Optional[int]:
75
74
  """
76
75
  The rate in milliseconds to poll for an LKE node to be ready.
77
76
  """
78
77
  return __config__.get_int('lkeNodeReadyPollMs')
79
78
 
80
- @property
79
+ @_builtins.property
81
80
  def max_retry_delay_ms(self) -> Optional[int]:
82
81
  """
83
82
  Maximum delay in milliseconds before retrying a request.
84
83
  """
85
84
  return __config__.get_int('maxRetryDelayMs')
86
85
 
87
- @property
86
+ @_builtins.property
88
87
  def min_retry_delay_ms(self) -> Optional[int]:
89
88
  """
90
89
  Minimum delay in milliseconds before retrying a request.
91
90
  """
92
91
  return __config__.get_int('minRetryDelayMs')
93
92
 
94
- @property
93
+ @_builtins.property
95
94
  def obj_access_key(self) -> Optional[str]:
96
95
  """
97
96
  The access key to be used in ObjectStorageBucket and linode_object_storage_object.
98
97
  """
99
98
  return __config__.get('objAccessKey')
100
99
 
101
- @property
100
+ @_builtins.property
102
101
  def obj_bucket_force_delete(self) -> Optional[bool]:
103
102
  """
104
103
  If true, when deleting a ObjectStorageBucket any objects and versions will be force deleted.
105
104
  """
106
105
  return __config__.get_bool('objBucketForceDelete')
107
106
 
108
- @property
107
+ @_builtins.property
109
108
  def obj_secret_key(self) -> Optional[str]:
110
109
  """
111
110
  The secret key to be used in ObjectStorageBucket and linode_object_storage_object.
112
111
  """
113
112
  return __config__.get('objSecretKey')
114
113
 
115
- @property
114
+ @_builtins.property
116
115
  def obj_use_temp_keys(self) -> Optional[bool]:
117
116
  """
118
117
  If true, temporary object keys will be created implicitly at apply-time for the ObjectStorageObject and
@@ -120,42 +119,42 @@ class _ExportableConfig(types.ModuleType):
120
119
  """
121
120
  return __config__.get_bool('objUseTempKeys')
122
121
 
123
- @property
122
+ @_builtins.property
124
123
  def skip_implicit_reboots(self) -> Optional[bool]:
125
124
  """
126
125
  If true, Linode Instances will not be rebooted on config and interface changes.
127
126
  """
128
127
  return __config__.get_bool('skipImplicitReboots')
129
128
 
130
- @property
129
+ @_builtins.property
131
130
  def skip_instance_delete_poll(self) -> Optional[bool]:
132
131
  """
133
132
  Skip waiting for a Instance resource to finish deleting.
134
133
  """
135
134
  return __config__.get_bool('skipInstanceDeletePoll')
136
135
 
137
- @property
136
+ @_builtins.property
138
137
  def skip_instance_ready_poll(self) -> Optional[bool]:
139
138
  """
140
139
  Skip waiting for a Instance resource to be running.
141
140
  """
142
141
  return __config__.get_bool('skipInstanceReadyPoll')
143
142
 
144
- @property
143
+ @_builtins.property
145
144
  def token(self) -> Optional[str]:
146
145
  """
147
146
  The token that allows you access to your Linode account
148
147
  """
149
148
  return __config__.get('token')
150
149
 
151
- @property
150
+ @_builtins.property
152
151
  def ua_prefix(self) -> Optional[str]:
153
152
  """
154
153
  An HTTP User-Agent Prefix to prepend in API requests.
155
154
  """
156
155
  return __config__.get('uaPrefix') or _utilities.get_env('LINODE_UA_PREFIX')
157
156
 
158
- @property
157
+ @_builtins.property
159
158
  def url(self) -> Optional[str]:
160
159
  """
161
160
  The HTTP(S) API address of the Linode API to use.