pulumi-linode 5.1.0a1752772340__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 +5224 -5147
  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 +34 -35
  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 +5340 -5291
  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.0a1752772340.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.0a1752772340.dist-info/RECORD +0 -126
  124. {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/WHEEL +0 -0
  125. {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.1.1a1753933550.dist-info}/top_level.txt +0 -0
pulumi_linode/ssh_key.py CHANGED
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -20,52 +19,52 @@ __all__ = ['SshKeyArgs', 'SshKey']
20
19
  @pulumi.input_type
21
20
  class SshKeyArgs:
22
21
  def __init__(__self__, *,
23
- label: pulumi.Input[builtins.str],
24
- ssh_key: pulumi.Input[builtins.str]):
22
+ label: pulumi.Input[_builtins.str],
23
+ ssh_key: pulumi.Input[_builtins.str]):
25
24
  """
26
25
  The set of arguments for constructing a SshKey resource.
27
- :param pulumi.Input[builtins.str] label: A label for the SSH Key.
28
- :param pulumi.Input[builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
26
+ :param pulumi.Input[_builtins.str] label: A label for the SSH Key.
27
+ :param pulumi.Input[_builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
29
28
  """
30
29
  pulumi.set(__self__, "label", label)
31
30
  pulumi.set(__self__, "ssh_key", ssh_key)
32
31
 
33
- @property
32
+ @_builtins.property
34
33
  @pulumi.getter
35
- def label(self) -> pulumi.Input[builtins.str]:
34
+ def label(self) -> pulumi.Input[_builtins.str]:
36
35
  """
37
36
  A label for the SSH Key.
38
37
  """
39
38
  return pulumi.get(self, "label")
40
39
 
41
40
  @label.setter
42
- def label(self, value: pulumi.Input[builtins.str]):
41
+ def label(self, value: pulumi.Input[_builtins.str]):
43
42
  pulumi.set(self, "label", value)
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  @pulumi.getter(name="sshKey")
47
- def ssh_key(self) -> pulumi.Input[builtins.str]:
46
+ def ssh_key(self) -> pulumi.Input[_builtins.str]:
48
47
  """
49
48
  The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
50
49
  """
51
50
  return pulumi.get(self, "ssh_key")
52
51
 
53
52
  @ssh_key.setter
54
- def ssh_key(self, value: pulumi.Input[builtins.str]):
53
+ def ssh_key(self, value: pulumi.Input[_builtins.str]):
55
54
  pulumi.set(self, "ssh_key", value)
56
55
 
57
56
 
58
57
  @pulumi.input_type
59
58
  class _SshKeyState:
60
59
  def __init__(__self__, *,
61
- created: Optional[pulumi.Input[builtins.str]] = None,
62
- label: Optional[pulumi.Input[builtins.str]] = None,
63
- ssh_key: Optional[pulumi.Input[builtins.str]] = None):
60
+ created: Optional[pulumi.Input[_builtins.str]] = None,
61
+ label: Optional[pulumi.Input[_builtins.str]] = None,
62
+ ssh_key: Optional[pulumi.Input[_builtins.str]] = None):
64
63
  """
65
64
  Input properties used for looking up and filtering SshKey resources.
66
- :param pulumi.Input[builtins.str] created: The date this SSH Key was created.
67
- :param pulumi.Input[builtins.str] label: A label for the SSH Key.
68
- :param pulumi.Input[builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
65
+ :param pulumi.Input[_builtins.str] created: The date this SSH Key was created.
66
+ :param pulumi.Input[_builtins.str] label: A label for the SSH Key.
67
+ :param pulumi.Input[_builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
69
68
  """
70
69
  if created is not None:
71
70
  pulumi.set(__self__, "created", created)
@@ -74,40 +73,40 @@ class _SshKeyState:
74
73
  if ssh_key is not None:
75
74
  pulumi.set(__self__, "ssh_key", ssh_key)
76
75
 
77
- @property
76
+ @_builtins.property
78
77
  @pulumi.getter
79
- def created(self) -> Optional[pulumi.Input[builtins.str]]:
78
+ def created(self) -> Optional[pulumi.Input[_builtins.str]]:
80
79
  """
81
80
  The date this SSH Key was created.
82
81
  """
83
82
  return pulumi.get(self, "created")
84
83
 
85
84
  @created.setter
86
- def created(self, value: Optional[pulumi.Input[builtins.str]]):
85
+ def created(self, value: Optional[pulumi.Input[_builtins.str]]):
87
86
  pulumi.set(self, "created", value)
88
87
 
89
- @property
88
+ @_builtins.property
90
89
  @pulumi.getter
91
- def label(self) -> Optional[pulumi.Input[builtins.str]]:
90
+ def label(self) -> Optional[pulumi.Input[_builtins.str]]:
92
91
  """
93
92
  A label for the SSH Key.
94
93
  """
95
94
  return pulumi.get(self, "label")
96
95
 
97
96
  @label.setter
98
- def label(self, value: Optional[pulumi.Input[builtins.str]]):
97
+ def label(self, value: Optional[pulumi.Input[_builtins.str]]):
99
98
  pulumi.set(self, "label", value)
100
99
 
101
- @property
100
+ @_builtins.property
102
101
  @pulumi.getter(name="sshKey")
103
- def ssh_key(self) -> Optional[pulumi.Input[builtins.str]]:
102
+ def ssh_key(self) -> Optional[pulumi.Input[_builtins.str]]:
104
103
  """
105
104
  The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
106
105
  """
107
106
  return pulumi.get(self, "ssh_key")
108
107
 
109
108
  @ssh_key.setter
110
- def ssh_key(self, value: Optional[pulumi.Input[builtins.str]]):
109
+ def ssh_key(self, value: Optional[pulumi.Input[_builtins.str]]):
111
110
  pulumi.set(self, "ssh_key", value)
112
111
 
113
112
 
@@ -117,8 +116,8 @@ class SshKey(pulumi.CustomResource):
117
116
  def __init__(__self__,
118
117
  resource_name: str,
119
118
  opts: Optional[pulumi.ResourceOptions] = None,
120
- label: Optional[pulumi.Input[builtins.str]] = None,
121
- ssh_key: Optional[pulumi.Input[builtins.str]] = None,
119
+ label: Optional[pulumi.Input[_builtins.str]] = None,
120
+ ssh_key: Optional[pulumi.Input[_builtins.str]] = None,
122
121
  __props__=None):
123
122
  """
124
123
  Provides a Linode SSH Key resource. This can be used to create, modify, and delete Linodes SSH Keys. Managed SSH Keys allow instances to be created with a list of Linode usernames, whose SSH keys will be automatically applied to the root account's `~/.ssh/authorized_keys` file.
@@ -157,8 +156,8 @@ class SshKey(pulumi.CustomResource):
157
156
 
158
157
  :param str resource_name: The name of the resource.
159
158
  :param pulumi.ResourceOptions opts: Options for the resource.
160
- :param pulumi.Input[builtins.str] label: A label for the SSH Key.
161
- :param pulumi.Input[builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
159
+ :param pulumi.Input[_builtins.str] label: A label for the SSH Key.
160
+ :param pulumi.Input[_builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
162
161
  """
163
162
  ...
164
163
  @overload
@@ -216,8 +215,8 @@ class SshKey(pulumi.CustomResource):
216
215
  def _internal_init(__self__,
217
216
  resource_name: str,
218
217
  opts: Optional[pulumi.ResourceOptions] = None,
219
- label: Optional[pulumi.Input[builtins.str]] = None,
220
- ssh_key: Optional[pulumi.Input[builtins.str]] = None,
218
+ label: Optional[pulumi.Input[_builtins.str]] = None,
219
+ ssh_key: Optional[pulumi.Input[_builtins.str]] = None,
221
220
  __props__=None):
222
221
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
223
222
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -244,9 +243,9 @@ class SshKey(pulumi.CustomResource):
244
243
  def get(resource_name: str,
245
244
  id: pulumi.Input[str],
246
245
  opts: Optional[pulumi.ResourceOptions] = None,
247
- created: Optional[pulumi.Input[builtins.str]] = None,
248
- label: Optional[pulumi.Input[builtins.str]] = None,
249
- ssh_key: Optional[pulumi.Input[builtins.str]] = None) -> 'SshKey':
246
+ created: Optional[pulumi.Input[_builtins.str]] = None,
247
+ label: Optional[pulumi.Input[_builtins.str]] = None,
248
+ ssh_key: Optional[pulumi.Input[_builtins.str]] = None) -> 'SshKey':
250
249
  """
251
250
  Get an existing SshKey resource's state with the given name, id, and optional extra
252
251
  properties used to qualify the lookup.
@@ -254,9 +253,9 @@ class SshKey(pulumi.CustomResource):
254
253
  :param str resource_name: The unique name of the resulting resource.
255
254
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
256
255
  :param pulumi.ResourceOptions opts: Options for the resource.
257
- :param pulumi.Input[builtins.str] created: The date this SSH Key was created.
258
- :param pulumi.Input[builtins.str] label: A label for the SSH Key.
259
- :param pulumi.Input[builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
256
+ :param pulumi.Input[_builtins.str] created: The date this SSH Key was created.
257
+ :param pulumi.Input[_builtins.str] label: A label for the SSH Key.
258
+ :param pulumi.Input[_builtins.str] ssh_key: The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
260
259
  """
261
260
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
262
261
 
@@ -267,25 +266,25 @@ class SshKey(pulumi.CustomResource):
267
266
  __props__.__dict__["ssh_key"] = ssh_key
268
267
  return SshKey(resource_name, opts=opts, __props__=__props__)
269
268
 
270
- @property
269
+ @_builtins.property
271
270
  @pulumi.getter
272
- def created(self) -> pulumi.Output[builtins.str]:
271
+ def created(self) -> pulumi.Output[_builtins.str]:
273
272
  """
274
273
  The date this SSH Key was created.
275
274
  """
276
275
  return pulumi.get(self, "created")
277
276
 
278
- @property
277
+ @_builtins.property
279
278
  @pulumi.getter
280
- def label(self) -> pulumi.Output[builtins.str]:
279
+ def label(self) -> pulumi.Output[_builtins.str]:
281
280
  """
282
281
  A label for the SSH Key.
283
282
  """
284
283
  return pulumi.get(self, "label")
285
284
 
286
- @property
285
+ @_builtins.property
287
286
  @pulumi.getter(name="sshKey")
288
- def ssh_key(self) -> pulumi.Output[builtins.str]:
287
+ def ssh_key(self) -> pulumi.Output[_builtins.str]:
289
288
  """
290
289
  The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
291
290
  """