pulumi-digitalocean 4.27.0a1710332933__py3-none-any.whl → 4.39.0a1736849637__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-digitalocean might be problematic. Click here for more details.

Files changed (107) hide show
  1. pulumi_digitalocean/__init__.py +75 -0
  2. pulumi_digitalocean/_enums.py +131 -52
  3. pulumi_digitalocean/_inputs.py +5767 -399
  4. pulumi_digitalocean/_utilities.py +41 -5
  5. pulumi_digitalocean/app.py +199 -67
  6. pulumi_digitalocean/cdn.py +20 -23
  7. pulumi_digitalocean/certificate.py +45 -42
  8. pulumi_digitalocean/config/__init__.pyi +5 -0
  9. pulumi_digitalocean/config/vars.py +5 -0
  10. pulumi_digitalocean/container_registry.py +11 -6
  11. pulumi_digitalocean/container_registry_docker_credentials.py +53 -12
  12. pulumi_digitalocean/custom_image.py +13 -8
  13. pulumi_digitalocean/database_cluster.py +298 -120
  14. pulumi_digitalocean/database_connection_pool.py +15 -10
  15. pulumi_digitalocean/database_db.py +19 -12
  16. pulumi_digitalocean/database_firewall.py +78 -75
  17. pulumi_digitalocean/database_kafka_config.py +1040 -0
  18. pulumi_digitalocean/database_kafka_topic.py +66 -61
  19. pulumi_digitalocean/database_mongodb_config.py +452 -0
  20. pulumi_digitalocean/database_mysql_config.py +15 -12
  21. pulumi_digitalocean/database_opensearch_config.py +2069 -0
  22. pulumi_digitalocean/database_postgresql_config.py +2614 -0
  23. pulumi_digitalocean/database_redis_config.py +29 -12
  24. pulumi_digitalocean/database_replica.py +29 -24
  25. pulumi_digitalocean/database_user.py +90 -75
  26. pulumi_digitalocean/dns_record.py +13 -8
  27. pulumi_digitalocean/domain.py +7 -6
  28. pulumi_digitalocean/droplet.py +89 -31
  29. pulumi_digitalocean/droplet_autoscale.py +474 -0
  30. pulumi_digitalocean/droplet_snapshot.py +23 -14
  31. pulumi_digitalocean/firewall.py +118 -106
  32. pulumi_digitalocean/floating_ip.py +19 -16
  33. pulumi_digitalocean/floating_ip_assignment.py +19 -16
  34. pulumi_digitalocean/get_account.py +18 -9
  35. pulumi_digitalocean/get_app.py +57 -10
  36. pulumi_digitalocean/get_certificate.py +19 -9
  37. pulumi_digitalocean/get_container_registry.py +19 -9
  38. pulumi_digitalocean/get_database_ca.py +14 -9
  39. pulumi_digitalocean/get_database_cluster.py +119 -11
  40. pulumi_digitalocean/get_database_connection_pool.py +25 -9
  41. pulumi_digitalocean/get_database_replica.py +29 -9
  42. pulumi_digitalocean/get_database_user.py +21 -9
  43. pulumi_digitalocean/get_domain.py +16 -9
  44. pulumi_digitalocean/get_domains.py +34 -27
  45. pulumi_digitalocean/get_droplet.py +66 -23
  46. pulumi_digitalocean/get_droplet_autoscale.py +197 -0
  47. pulumi_digitalocean/get_droplet_snapshot.py +36 -23
  48. pulumi_digitalocean/get_droplets.py +80 -54
  49. pulumi_digitalocean/get_firewall.py +29 -13
  50. pulumi_digitalocean/get_floating_ip.py +16 -9
  51. pulumi_digitalocean/get_image.py +42 -27
  52. pulumi_digitalocean/get_images.py +56 -53
  53. pulumi_digitalocean/get_kubernetes_cluster.py +53 -6
  54. pulumi_digitalocean/get_kubernetes_versions.py +43 -41
  55. pulumi_digitalocean/get_load_balancer.py +81 -17
  56. pulumi_digitalocean/get_project.py +23 -9
  57. pulumi_digitalocean/get_projects.py +56 -53
  58. pulumi_digitalocean/get_record.py +23 -9
  59. pulumi_digitalocean/get_records.py +62 -13
  60. pulumi_digitalocean/get_region.py +17 -9
  61. pulumi_digitalocean/get_regions.py +56 -53
  62. pulumi_digitalocean/get_reserved_ip.py +16 -9
  63. pulumi_digitalocean/get_reserved_ipv6.py +118 -0
  64. pulumi_digitalocean/get_sizes.py +24 -13
  65. pulumi_digitalocean/get_spaces_bucket.py +18 -9
  66. pulumi_digitalocean/get_spaces_bucket_object.py +41 -14
  67. pulumi_digitalocean/get_spaces_bucket_objects.py +26 -5
  68. pulumi_digitalocean/get_spaces_buckets.py +48 -45
  69. pulumi_digitalocean/get_ssh_key.py +27 -19
  70. pulumi_digitalocean/get_ssh_keys.py +40 -37
  71. pulumi_digitalocean/get_tag.py +31 -19
  72. pulumi_digitalocean/get_tags.py +32 -25
  73. pulumi_digitalocean/get_volume.py +35 -23
  74. pulumi_digitalocean/get_volume_snapshot.py +35 -21
  75. pulumi_digitalocean/get_vpc.py +33 -23
  76. pulumi_digitalocean/get_vpc_peering.py +244 -0
  77. pulumi_digitalocean/kubernetes_cluster.py +86 -35
  78. pulumi_digitalocean/kubernetes_node_pool.py +46 -43
  79. pulumi_digitalocean/load_balancer.py +320 -157
  80. pulumi_digitalocean/monitor_alert.py +17 -12
  81. pulumi_digitalocean/outputs.py +3419 -344
  82. pulumi_digitalocean/project.py +19 -16
  83. pulumi_digitalocean/project_resources.py +11 -8
  84. pulumi_digitalocean/provider.py +5 -0
  85. pulumi_digitalocean/pulumi-plugin.json +2 -1
  86. pulumi_digitalocean/reserved_ip.py +19 -16
  87. pulumi_digitalocean/reserved_ip_assignment.py +19 -16
  88. pulumi_digitalocean/reserved_ipv6.py +232 -0
  89. pulumi_digitalocean/reserved_ipv6_assignment.py +171 -0
  90. pulumi_digitalocean/spaces_bucket.py +70 -79
  91. pulumi_digitalocean/spaces_bucket_cors_configuration.py +30 -25
  92. pulumi_digitalocean/spaces_bucket_object.py +11 -12
  93. pulumi_digitalocean/spaces_bucket_policy.py +21 -16
  94. pulumi_digitalocean/ssh_key.py +19 -10
  95. pulumi_digitalocean/tag.py +13 -10
  96. pulumi_digitalocean/uptime_alert.py +10 -5
  97. pulumi_digitalocean/uptime_check.py +5 -0
  98. pulumi_digitalocean/volume.py +47 -50
  99. pulumi_digitalocean/volume_attachment.py +25 -20
  100. pulumi_digitalocean/volume_snapshot.py +17 -10
  101. pulumi_digitalocean/vpc.py +27 -22
  102. pulumi_digitalocean/vpc_peering.py +378 -0
  103. {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/METADATA +7 -6
  104. pulumi_digitalocean-4.39.0a1736849637.dist-info/RECORD +108 -0
  105. {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/WHEEL +1 -1
  106. pulumi_digitalocean-4.27.0a1710332933.dist-info/RECORD +0 -97
  107. {pulumi_digitalocean-4.27.0a1710332933.dist-info → pulumi_digitalocean-4.39.0a1736849637.dist-info}/top_level.txt +0 -0
@@ -16,14 +16,19 @@ from .database_cluster import *
16
16
  from .database_connection_pool import *
17
17
  from .database_db import *
18
18
  from .database_firewall import *
19
+ from .database_kafka_config import *
19
20
  from .database_kafka_topic import *
21
+ from .database_mongodb_config import *
20
22
  from .database_mysql_config import *
23
+ from .database_opensearch_config import *
24
+ from .database_postgresql_config import *
21
25
  from .database_redis_config import *
22
26
  from .database_replica import *
23
27
  from .database_user import *
24
28
  from .dns_record import *
25
29
  from .domain import *
26
30
  from .droplet import *
31
+ from .droplet_autoscale import *
27
32
  from .droplet_snapshot import *
28
33
  from .firewall import *
29
34
  from .floating_ip import *
@@ -40,6 +45,7 @@ from .get_database_user import *
40
45
  from .get_domain import *
41
46
  from .get_domains import *
42
47
  from .get_droplet import *
48
+ from .get_droplet_autoscale import *
43
49
  from .get_droplet_snapshot import *
44
50
  from .get_droplets import *
45
51
  from .get_firewall import *
@@ -56,6 +62,7 @@ from .get_records import *
56
62
  from .get_region import *
57
63
  from .get_regions import *
58
64
  from .get_reserved_ip import *
65
+ from .get_reserved_ipv6 import *
59
66
  from .get_sizes import *
60
67
  from .get_spaces_bucket import *
61
68
  from .get_spaces_bucket_object import *
@@ -68,6 +75,7 @@ from .get_tags import *
68
75
  from .get_volume import *
69
76
  from .get_volume_snapshot import *
70
77
  from .get_vpc import *
78
+ from .get_vpc_peering import *
71
79
  from .kubernetes_cluster import *
72
80
  from .kubernetes_node_pool import *
73
81
  from .load_balancer import *
@@ -77,6 +85,8 @@ from .project_resources import *
77
85
  from .provider import *
78
86
  from .reserved_ip import *
79
87
  from .reserved_ip_assignment import *
88
+ from .reserved_ipv6 import *
89
+ from .reserved_ipv6_assignment import *
80
90
  from .spaces_bucket import *
81
91
  from .spaces_bucket_cors_configuration import *
82
92
  from .spaces_bucket_object import *
@@ -89,6 +99,7 @@ from .volume import *
89
99
  from .volume_attachment import *
90
100
  from .volume_snapshot import *
91
101
  from .vpc import *
102
+ from .vpc_peering import *
92
103
  from ._inputs import *
93
104
  from . import outputs
94
105
 
@@ -182,6 +193,14 @@ _utilities.register(
182
193
  "digitalocean:index/databaseFirewall:DatabaseFirewall": "DatabaseFirewall"
183
194
  }
184
195
  },
196
+ {
197
+ "pkg": "digitalocean",
198
+ "mod": "index/databaseKafkaConfig",
199
+ "fqn": "pulumi_digitalocean",
200
+ "classes": {
201
+ "digitalocean:index/databaseKafkaConfig:DatabaseKafkaConfig": "DatabaseKafkaConfig"
202
+ }
203
+ },
185
204
  {
186
205
  "pkg": "digitalocean",
187
206
  "mod": "index/databaseKafkaTopic",
@@ -190,6 +209,14 @@ _utilities.register(
190
209
  "digitalocean:index/databaseKafkaTopic:DatabaseKafkaTopic": "DatabaseKafkaTopic"
191
210
  }
192
211
  },
212
+ {
213
+ "pkg": "digitalocean",
214
+ "mod": "index/databaseMongodbConfig",
215
+ "fqn": "pulumi_digitalocean",
216
+ "classes": {
217
+ "digitalocean:index/databaseMongodbConfig:DatabaseMongodbConfig": "DatabaseMongodbConfig"
218
+ }
219
+ },
193
220
  {
194
221
  "pkg": "digitalocean",
195
222
  "mod": "index/databaseMysqlConfig",
@@ -198,6 +225,22 @@ _utilities.register(
198
225
  "digitalocean:index/databaseMysqlConfig:DatabaseMysqlConfig": "DatabaseMysqlConfig"
199
226
  }
200
227
  },
228
+ {
229
+ "pkg": "digitalocean",
230
+ "mod": "index/databaseOpensearchConfig",
231
+ "fqn": "pulumi_digitalocean",
232
+ "classes": {
233
+ "digitalocean:index/databaseOpensearchConfig:DatabaseOpensearchConfig": "DatabaseOpensearchConfig"
234
+ }
235
+ },
236
+ {
237
+ "pkg": "digitalocean",
238
+ "mod": "index/databasePostgresqlConfig",
239
+ "fqn": "pulumi_digitalocean",
240
+ "classes": {
241
+ "digitalocean:index/databasePostgresqlConfig:DatabasePostgresqlConfig": "DatabasePostgresqlConfig"
242
+ }
243
+ },
201
244
  {
202
245
  "pkg": "digitalocean",
203
246
  "mod": "index/databaseRedisConfig",
@@ -246,6 +289,14 @@ _utilities.register(
246
289
  "digitalocean:index/droplet:Droplet": "Droplet"
247
290
  }
248
291
  },
292
+ {
293
+ "pkg": "digitalocean",
294
+ "mod": "index/dropletAutoscale",
295
+ "fqn": "pulumi_digitalocean",
296
+ "classes": {
297
+ "digitalocean:index/dropletAutoscale:DropletAutoscale": "DropletAutoscale"
298
+ }
299
+ },
249
300
  {
250
301
  "pkg": "digitalocean",
251
302
  "mod": "index/dropletSnapshot",
@@ -342,6 +393,22 @@ _utilities.register(
342
393
  "digitalocean:index/reservedIpAssignment:ReservedIpAssignment": "ReservedIpAssignment"
343
394
  }
344
395
  },
396
+ {
397
+ "pkg": "digitalocean",
398
+ "mod": "index/reservedIpv6",
399
+ "fqn": "pulumi_digitalocean",
400
+ "classes": {
401
+ "digitalocean:index/reservedIpv6:ReservedIpv6": "ReservedIpv6"
402
+ }
403
+ },
404
+ {
405
+ "pkg": "digitalocean",
406
+ "mod": "index/reservedIpv6Assignment",
407
+ "fqn": "pulumi_digitalocean",
408
+ "classes": {
409
+ "digitalocean:index/reservedIpv6Assignment:ReservedIpv6Assignment": "ReservedIpv6Assignment"
410
+ }
411
+ },
345
412
  {
346
413
  "pkg": "digitalocean",
347
414
  "mod": "index/spacesBucket",
@@ -437,6 +504,14 @@ _utilities.register(
437
504
  "classes": {
438
505
  "digitalocean:index/vpc:Vpc": "Vpc"
439
506
  }
507
+ },
508
+ {
509
+ "pkg": "digitalocean",
510
+ "mod": "index/vpcPeering",
511
+ "fqn": "pulumi_digitalocean",
512
+ "classes": {
513
+ "digitalocean:index/vpcPeering:VpcPeering": "VpcPeering"
514
+ }
440
515
  }
441
516
  ]
442
517
  """,
@@ -37,94 +37,173 @@ class DatabaseSlug(str, Enum):
37
37
 
38
38
 
39
39
  class DropletSlug(str, Enum):
40
+ DROPLET_S1_VCPU512_MB10_GB = "s-1vcpu-512mb-10gb"
40
41
  DROPLET_S1_VCPU1_GB = "s-1vcpu-1gb"
41
42
  DROPLET_S1_VCPU1_G_B_AMD = "s-1vcpu-1gb-amd"
42
43
  DROPLET_S1_VCPU1_G_B_INTEL = "s-1vcpu-1gb-intel"
44
+ DROPLET_S1_VCPU1_GB35_G_B_INTEL = "s-1vcpu-1gb-35gb-intel"
43
45
  DROPLET_S1_VCPU2_GB = "s-1vcpu-2gb"
44
46
  DROPLET_S1_VCPU2_G_B_AMD = "s-1vcpu-2gb-amd"
45
47
  DROPLET_S1_VCPU2_G_B_INTEL = "s-1vcpu-2gb-intel"
48
+ DROPLET_S1_VCPU2_GB70_G_B_INTEL = "s-1vcpu-2gb-70gb-intel"
46
49
  DROPLET_S2_VCPU2_GB = "s-2vcpu-2gb"
47
50
  DROPLET_S2_VCPU2_G_B_AMD = "s-2vcpu-2gb-amd"
48
51
  DROPLET_S2_VCPU2_G_B_INTEL = "s-2vcpu-2gb-intel"
52
+ DROPLET_S2_VCPU2_GB90_G_B_INTEL = "s-2vcpu-2gb-90gb-intel"
49
53
  DROPLET_S2_VCPU4_GB = "s-2vcpu-4gb"
50
54
  DROPLET_S2_VCPU4_G_B_AMD = "s-2vcpu-4gb-amd"
51
55
  DROPLET_S2_VCPU4_G_B_INTEL = "s-2vcpu-4gb-intel"
56
+ DROPLET_S2_VCPU4_GB120_G_B_INTEL = "s-2vcpu-4gb-120gb-intel"
57
+ DROPLET_S2_VCPU8_G_B_AMD = "s-2vcpu-8gb-amd"
58
+ DROPLET_C2 = "c-2"
59
+ DROPLET_C22_VCPU4_GB = "c2-2vcpu-4gb"
60
+ DROPLET_S2_VCPU8_GB160_G_B_INTEL = "s-2vcpu-8gb-160gb-intel"
52
61
  DROPLET_S4_VCPU8_GB = "s-4vcpu-8gb"
53
62
  DROPLET_S4_VCPU8_G_B_AMD = "s-4vcpu-8gb-amd"
54
63
  DROPLET_S4_VCPU8_G_B_INTEL = "s-4vcpu-8gb-intel"
64
+ DROPLET_G2_VCPU8_GB = "g-2vcpu-8gb"
65
+ DROPLET_S4_VCPU8_GB240_G_B_INTEL = "s-4vcpu-8gb-240gb-intel"
66
+ DROPLET_GD2_VCPU8_GB = "gd-2vcpu-8gb"
67
+ DROPLET_G2_VCPU8_G_B_INTEL = "g-2vcpu-8gb-intel"
68
+ DROPLET_GD2_VCPU8_G_B_INTEL = "gd-2vcpu-8gb-intel"
69
+ DROPLET_S4_VCPU16_G_B_AMD = "s-4vcpu-16gb-amd"
70
+ DROPLET_M2_VCPU16_GB = "m-2vcpu-16gb"
71
+ DROPLET_C4 = "c-4"
72
+ DROPLET_C24_VCPU8_GB = "c2-4vcpu-8gb"
73
+ DROPLET_S4_VCPU16_GB320_G_B_INTEL = "s-4vcpu-16gb-320gb-intel"
74
+ DROPLET_S8_VCPU16_GB = "s-8vcpu-16gb"
75
+ DROPLET_M2_VCPU16_G_B_INTEL = "m-2vcpu-16gb-intel"
76
+ DROPLET_M32_VCPU16_GB = "m3-2vcpu-16gb"
77
+ DROPLET_C4_INTEL = "c-4-intel"
78
+ DROPLET_M32_VCPU16_G_B_INTEL = "m3-2vcpu-16gb-intel"
55
79
  DROPLET_S8_VCPU16_G_B_AMD = "s-8vcpu-16gb-amd"
56
80
  DROPLET_S8_VCPU16_G_B_INTEL = "s-8vcpu-16gb-intel"
57
- DROPLET_C2 = "c-2"
58
- DROPLET_C22_VCPU4_GB = "c2-2vcpu-4gb"
59
- DROPLET_C22_VCPU8_GB = "c2-4vcpu-8gb"
60
- DROPLET_C28_VCPU16_GB = "c2-8vcpu-16gb"
61
- DROPLET_C216_VCPU32_GB = "c2-16vcpu-32gb"
62
- DROPLET_C232_VCPU64_GB = "c2-32vcpu-64gb"
63
- DROPLET_C4 = "c-4"
64
- DROPLET_C8 = "c-8"
65
- DROPLET_C16 = "c-16"
66
- DROPLET_C32 = "c-32"
67
- DROPLET_G2_VCPU8_GB = "g-2vcpu-8gb"
81
+ DROPLET_C24_VCPU8_G_B_INTEL = "c2-4vcpu-8gb-intel"
68
82
  DROPLET_G4_VCPU16_GB = "g-4vcpu-16gb"
69
- DROPLET_G8_VCPU32_GB = "g-8vcpu-32gb"
70
- DROPLET_G16_VCPU64_GB = "g-16vcpu-64gb"
71
- DROPLET_G32_VCPU128_GB = "g-32vcpu-128gb"
72
- DROPLET_G40_VCPU160_GB = "g-40vcpu-160gb"
73
- DROPLET_GD2_VCPU8_GB = "gd-2vcpu-8gb"
83
+ DROPLET_S8_VCPU16_GB480_G_B_INTEL = "s-8vcpu-16gb-480gb-intel"
84
+ DROPLET_SO2_VCPU16_G_B_INTEL = "so-2vcpu-16gb-intel"
85
+ DROPLET_SO2_VCPU16_GB = "so-2vcpu-16gb"
86
+ DROPLET_M62_VCPU16_GB = "m6-2vcpu-16gb"
74
87
  DROPLET_GD4_VCPU16_GB = "gd-4vcpu-16gb"
75
- DROPLET_GD8_VCPU32_GB = "gd-8vcpu-32gb"
76
- DROPLET_GD16_VCPU64_GB = "gd-16vcpu-64gb"
77
- DROPLET_GD32_VCPU128_GB = "gd-32vcpu-128gb"
78
- DROPLET_GD40_VCPU160_GB = "gd-40vcpu-160gb"
79
- DROPLET_S8_VCPU16_GB = "s-8vcpu-16gb"
80
- DROPLET_M2_VCPU16_GB = "m-2vcpu-16gb"
88
+ DROPLET_SO1_52_VCPU16_G_B_INTEL = "so1_5-2vcpu-16gb-intel"
89
+ DROPLET_G4_VCPU16_G_B_INTEL = "g-4vcpu-16gb-intel"
90
+ DROPLET_GD4_VCPU16_G_B_INTEL = "gd-4vcpu-16gb-intel"
91
+ DROPLET_SO1_52_VCPU16_GB = "so1_5-2vcpu-16gb"
92
+ DROPLET_S8_VCPU32_G_B_AMD = "s-8vcpu-32gb-amd"
81
93
  DROPLET_M4_VCPU32_GB = "m-4vcpu-32gb"
82
- DROPLET_M8_VCPU64_GB = "m-8vcpu-64gb"
83
- DROPLET_M16_VCPU128_GB = "m-16vcpu-128gb"
84
- DROPLET_M24_VCPU192_GB = "m-24vcpu-192gb"
85
- DROPLET_M32_VCPU256_GB = "m-32vcpu-256gb"
86
- DROPLET_M32_VCPU16_GB = "m3-2vcpu-16gb"
94
+ DROPLET_C8 = "c-8"
95
+ DROPLET_C28_VCPU16_GB = "c2-8vcpu-16gb"
96
+ DROPLET_S8_VCPU32_GB640_G_B_INTEL = "s-8vcpu-32gb-640gb-intel"
97
+ DROPLET_M4_VCPU32_G_B_INTEL = "m-4vcpu-32gb-intel"
87
98
  DROPLET_M34_VCPU32_GB = "m3-4vcpu-32gb"
88
- DROPLET_M38_VCPU64_GB = "m3-8vcpu-64gb"
89
- DROPLET_M316_VCPU128_GB = "m3-16vcpu-128gb"
90
- DROPLET_M324_VCPU192_GB = "m3-24vcpu-192gb"
91
- DROPLET_M332_VCPU256_GB = "m3-32vcpu-256gb"
92
- DROPLET_M62_VCPU16_GB = "m6-2vcpu-16gb"
93
- DROPLET_M64_VCPU32_GB = "m6-4vcpu-32gb"
94
- DROPLET_M68_VCPU64_GB = "m6-8vcpu-64gb"
95
- DROPLET_M616_VCPU128_GB = "m6-16vcpu-128gb"
96
- DROPLET_M624_VCPU192_GB = "m6-24vcpu-192gb"
97
- DROPLET_M632_VCPU256_GB = "m6-32vcpu-256gb"
98
- DROPLET_SO2_VCPU16_GB = "so-2vcpu-16gb"
99
+ DROPLET_C8_INTEL = "c-8-intel"
100
+ DROPLET_M34_VCPU32_G_B_INTEL = "m3-4vcpu-32gb-intel"
101
+ DROPLET_C28_VCPU16_G_B_INTEL = "c2-8vcpu-16gb-intel"
102
+ DROPLET_G8_VCPU32_GB = "g-8vcpu-32gb"
103
+ DROPLET_SO4_VCPU32_G_B_INTEL = "so-4vcpu-32gb-intel"
99
104
  DROPLET_SO4_VCPU32_GB = "so-4vcpu-32gb"
105
+ DROPLET_M64_VCPU32_GB = "m6-4vcpu-32gb"
106
+ DROPLET_GD8_VCPU32_GB = "gd-8vcpu-32gb"
107
+ DROPLET_SO1_54_VCPU32_G_B_INTEL = "so1_5-4vcpu-32gb-intel"
108
+ DROPLET_G8_VCPU32_G_B_INTEL = "g-8vcpu-32gb-intel"
109
+ DROPLET_GD8_VCPU32_G_B_INTEL = "gd-8vcpu-32gb-intel"
110
+ DROPLET_SO1_54_VCPU32_GB = "so1_5-4vcpu-32gb"
111
+ DROPLET_M8_VCPU64_GB = "m-8vcpu-64gb"
112
+ DROPLET_C16 = "c-16"
113
+ DROPLET_C216_VCPU32_GB = "c2-16vcpu-32gb"
114
+ DROPLET_M8_VCPU64_G_B_INTEL = "m-8vcpu-64gb-intel"
115
+ DROPLET_M38_VCPU64_GB = "m3-8vcpu-64gb"
116
+ DROPLET_C16_INTEL = "c-16-intel"
117
+ DROPLET_M38_VCPU64_G_B_INTEL = "m3-8vcpu-64gb-intel"
118
+ DROPLET_C216_VCPU32_G_B_INTEL = "c2-16vcpu-32gb-intel"
119
+ DROPLET_G16_VCPU64_GB = "g-16vcpu-64gb"
120
+ DROPLET_SO8_VCPU64_G_B_INTEL = "so-8vcpu-64gb-intel"
100
121
  DROPLET_SO8_VCPU64_GB = "so-8vcpu-64gb"
122
+ DROPLET_M68_VCPU64_GB = "m6-8vcpu-64gb"
123
+ DROPLET_GD16_VCPU64_GB = "gd-16vcpu-64gb"
124
+ DROPLET_SO1_58_VCPU64_G_B_INTEL = "so1_5-8vcpu-64gb-intel"
125
+ DROPLET_G16_VCPU64_G_B_INTEL = "g-16vcpu-64gb-intel"
126
+ DROPLET_GD16_VCPU64_G_B_INTEL = "gd-16vcpu-64gb-intel"
127
+ DROPLET_SO1_58_VCPU64_GB = "so1_5-8vcpu-64gb"
128
+ DROPLET_M16_VCPU128_GB = "m-16vcpu-128gb"
129
+ DROPLET_C32 = "c-32"
130
+ DROPLET_C232_VCPU64_GB = "c2-32vcpu-64gb"
131
+ DROPLET_M16_VCPU128_G_B_INTEL = "m-16vcpu-128gb-intel"
132
+ DROPLET_M316_VCPU128_GB = "m3-16vcpu-128gb"
133
+ DROPLET_C32_INTEL = "c-32-intel"
134
+ DROPLET_M316_VCPU128_G_B_INTEL = "m3-16vcpu-128gb-intel"
135
+ DROPLET_C232_VCPU64_G_B_INTEL = "c2-32vcpu-64gb-intel"
136
+ DROPLET_C48 = "c-48"
137
+ DROPLET_M24_VCPU192_GB = "m-24vcpu-192gb"
138
+ DROPLET_G32_VCPU128_GB = "g-32vcpu-128gb"
139
+ DROPLET_SO16_VCPU128_G_B_INTEL = "so-16vcpu-128gb-intel"
101
140
  DROPLET_SO16_VCPU128_GB = "so-16vcpu-128gb"
141
+ DROPLET_M616_VCPU128_GB = "m6-16vcpu-128gb"
142
+ DROPLET_GD32_VCPU128_GB = "gd-32vcpu-128gb"
143
+ DROPLET_SO1_516_VCPU128_G_B_INTEL = "so1_5-16vcpu-128gb-intel"
144
+ DROPLET_C248_VCPU96_GB = "c2-48vcpu-96gb"
145
+ DROPLET_M24_VCPU192_G_B_INTEL = "m-24vcpu-192gb-intel"
146
+ DROPLET_G32_VCPU128_G_B_INTEL = "g-32vcpu-128gb-intel"
147
+ DROPLET_M324_VCPU192_GB = "m3-24vcpu-192gb"
148
+ DROPLET_G40_VCPU160_GB = "g-40vcpu-160gb"
149
+ DROPLET_GD32_VCPU128_G_B_INTEL = "gd-32vcpu-128gb-intel"
150
+ DROPLET_SO1_516_VCPU128_GB = "so1_5-16vcpu-128gb"
151
+ DROPLET_C48_INTEL = "c-48-intel"
152
+ DROPLET_M324_VCPU192_G_B_INTEL = "m3-24vcpu-192gb-intel"
153
+ DROPLET_M32_VCPU256_GB = "m-32vcpu-256gb"
154
+ DROPLET_GD40_VCPU160_GB = "gd-40vcpu-160gb"
155
+ DROPLET_C248_VCPU96_G_B_INTEL = "c2-48vcpu-96gb-intel"
156
+ DROPLET_SO24_VCPU192_G_B_INTEL = "so-24vcpu-192gb-intel"
102
157
  DROPLET_SO24_VCPU192_GB = "so-24vcpu-192gb"
158
+ DROPLET_M624_VCPU192_GB = "m6-24vcpu-192gb"
159
+ DROPLET_M32_VCPU256_G_B_INTEL = "m-32vcpu-256gb-intel"
160
+ DROPLET_C60_INTEL = "c-60-intel"
161
+ DROPLET_M332_VCPU256_GB = "m3-32vcpu-256gb"
162
+ DROPLET_SO1_524_VCPU192_G_B_INTEL = "so1_5-24vcpu-192gb-intel"
163
+ DROPLET_M332_VCPU256_G_B_INTEL = "m3-32vcpu-256gb-intel"
164
+ DROPLET_G48_VCPU192_G_B_INTEL = "g-48vcpu-192gb-intel"
165
+ DROPLET_C260_VCPU120_G_B_INTEL = "c2-60vcpu-120gb-intel"
166
+ DROPLET_GD48_VCPU192_G_B_INTEL = "gd-48vcpu-192gb-intel"
167
+ DROPLET_SO1_524_VCPU192_GB = "so1_5-24vcpu-192gb"
168
+ DROPLET_SO32_VCPU256_G_B_INTEL = "so-32vcpu-256gb-intel"
103
169
  DROPLET_SO32_VCPU256_GB = "so-32vcpu-256gb"
104
- DROPLET_SO152_VCPU16_GB = "so1_5-2vcpu-16gb"
105
- DROPLET_SO154_VCPU32_GB = "so1_5-4vcpu-32gb"
106
- DROPLET_SO158_VCPU64_GB = "so1_5-8vcpu-64gb"
107
- DROPLET_SO1516_VCPU128_GB = "so1_5-16vcpu-128gb"
108
- DROPLET_SO1524_VCPU192_GB = "so1_5-24vcpu-192gb"
109
- DROPLET_SO1532_VCPU256_GB = "so1_5-32vcpu-256gb"
110
- DROPLET512MB = "512mb"
170
+ DROPLET_M632_VCPU256_GB = "m6-32vcpu-256gb"
171
+ DROPLET_SO1_532_VCPU256_G_B_INTEL = "so1_5-32vcpu-256gb-intel"
172
+ DROPLET_G60_VCPU240_G_B_INTEL = "g-60vcpu-240gb-intel"
173
+ DROPLET_M48_VCPU384_G_B_INTEL = "m-48vcpu-384gb-intel"
174
+ DROPLET_GD60_VCPU240_G_B_INTEL = "gd-60vcpu-240gb-intel"
175
+ DROPLET_GPUH100_X180_GB = "gpu-h100x1-80gb"
176
+ DROPLET_SO1_532_VCPU256_GB = "so1_5-32vcpu-256gb"
177
+ DROPLET_M348_VCPU384_G_B_INTEL = "m3-48vcpu-384gb-intel"
178
+ DROPLET_SO48_VCPU384_G_B_INTEL = "so-48vcpu-384gb-intel"
179
+ DROPLET_GPUH100_X180_GB200 = "gpu-h100x1-80gb-200"
180
+ DROPLET_GPUH100_X8640_GB = "gpu-h100x8-640gb"
181
+ DROPLET_GPUH100_X8640_GB200 = "gpu-h100x8-640gb-200"
182
+ DROPLET16_GB = "16gb"
111
183
  DROPLET1_GB = "1gb"
112
184
  DROPLET2_GB = "2gb"
113
- DROPLET4_GB = "4gb"
114
- DROPLET8_GB = "8gb"
115
- DROPLET16_GB = "16gb"
116
185
  DROPLET32_GB = "32gb"
117
186
  DROPLET48_GB = "48gb"
187
+ DROPLET4_GB = "4gb"
188
+ DROPLET512MB = "512mb"
118
189
  DROPLET64_GB = "64gb"
119
- DROPLET_S1_VCPU3_GB = "s-1vcpu-3gb"
120
- DROPLET_S3_VCPU1_GB = "s-3vcpu-1gb"
121
- DROPLET_S6_VCPU16_GB = "s-6vcpu-16gb"
122
- DROPLET_S8_VCPU32_GB = "s-8vcpu-32gb"
190
+ DROPLET8_GB = "8gb"
191
+ DROPLET_C22_VCPU8_GB = "c2-4vcpu-8gb"
123
192
  DROPLET_S12_VCPU48_GB = "s-12vcpu-48gb"
124
193
  DROPLET_S16_VCPU64_GB = "s-16vcpu-64gb"
194
+ DROPLET_S1_VCPU3_GB = "s-1vcpu-3gb"
125
195
  DROPLET_S20_VCPU96_GB = "s-20vcpu-96gb"
126
196
  DROPLET_S24_VCPU128_GB = "s-24vcpu-128gb"
127
197
  DROPLET_S32_VCPU192_GB = "s-32vcpu-192gb"
198
+ DROPLET_S3_VCPU1_GB = "s-3vcpu-1gb"
199
+ DROPLET_S6_VCPU16_GB = "s-6vcpu-16gb"
200
+ DROPLET_S8_VCPU32_GB = "s-8vcpu-32gb"
201
+ DROPLET_SO1516_VCPU128_GB = "so1_5-16vcpu-128gb"
202
+ DROPLET_SO1524_VCPU192_GB = "so1_5-24vcpu-192gb"
203
+ DROPLET_SO152_VCPU16_GB = "so1_5-2vcpu-16gb"
204
+ DROPLET_SO1532_VCPU256_GB = "so1_5-32vcpu-256gb"
205
+ DROPLET_SO154_VCPU32_GB = "so1_5-4vcpu-32gb"
206
+ DROPLET_SO158_VCPU64_GB = "so1_5-8vcpu-64gb"
128
207
 
129
208
 
130
209
  class FileSystemType(str, Enum):