pulumi-digitalocean 4.43.0a1745559798__py3-none-any.whl → 4.44.0a1746040777__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 (59) hide show
  1. pulumi_digitalocean/app.py +3 -0
  2. pulumi_digitalocean/cdn.py +3 -0
  3. pulumi_digitalocean/certificate.py +3 -0
  4. pulumi_digitalocean/container_registry.py +3 -0
  5. pulumi_digitalocean/container_registry_docker_credentials.py +3 -0
  6. pulumi_digitalocean/custom_image.py +3 -0
  7. pulumi_digitalocean/database_cluster.py +3 -0
  8. pulumi_digitalocean/database_connection_pool.py +3 -0
  9. pulumi_digitalocean/database_db.py +3 -0
  10. pulumi_digitalocean/database_firewall.py +3 -0
  11. pulumi_digitalocean/database_kafka_config.py +3 -0
  12. pulumi_digitalocean/database_kafka_topic.py +3 -0
  13. pulumi_digitalocean/database_mongodb_config.py +3 -0
  14. pulumi_digitalocean/database_mysql_config.py +3 -0
  15. pulumi_digitalocean/database_opensearch_config.py +3 -0
  16. pulumi_digitalocean/database_postgresql_config.py +3 -0
  17. pulumi_digitalocean/database_redis_config.py +3 -0
  18. pulumi_digitalocean/database_replica.py +3 -0
  19. pulumi_digitalocean/database_user.py +3 -0
  20. pulumi_digitalocean/dns_record.py +3 -0
  21. pulumi_digitalocean/domain.py +3 -0
  22. pulumi_digitalocean/droplet.py +3 -0
  23. pulumi_digitalocean/droplet_autoscale.py +3 -0
  24. pulumi_digitalocean/droplet_snapshot.py +3 -0
  25. pulumi_digitalocean/firewall.py +3 -0
  26. pulumi_digitalocean/floating_ip.py +3 -0
  27. pulumi_digitalocean/floating_ip_assignment.py +3 -0
  28. pulumi_digitalocean/kubernetes_cluster.py +3 -0
  29. pulumi_digitalocean/kubernetes_node_pool.py +3 -0
  30. pulumi_digitalocean/load_balancer.py +50 -14
  31. pulumi_digitalocean/monitor_alert.py +3 -0
  32. pulumi_digitalocean/partner_attachment.py +3 -0
  33. pulumi_digitalocean/project.py +3 -0
  34. pulumi_digitalocean/project_resources.py +3 -0
  35. pulumi_digitalocean/provider.py +3 -0
  36. pulumi_digitalocean/pulumi-plugin.json +1 -1
  37. pulumi_digitalocean/reserved_ip.py +3 -0
  38. pulumi_digitalocean/reserved_ip_assignment.py +3 -0
  39. pulumi_digitalocean/reserved_ipv6.py +3 -0
  40. pulumi_digitalocean/reserved_ipv6_assignment.py +3 -0
  41. pulumi_digitalocean/spaces_bucket.py +3 -0
  42. pulumi_digitalocean/spaces_bucket_cors_configuration.py +3 -0
  43. pulumi_digitalocean/spaces_bucket_object.py +3 -0
  44. pulumi_digitalocean/spaces_bucket_policy.py +3 -0
  45. pulumi_digitalocean/spaces_key.py +3 -0
  46. pulumi_digitalocean/ssh_key.py +3 -0
  47. pulumi_digitalocean/tag.py +3 -0
  48. pulumi_digitalocean/uptime_alert.py +3 -0
  49. pulumi_digitalocean/uptime_check.py +3 -0
  50. pulumi_digitalocean/volume.py +3 -0
  51. pulumi_digitalocean/volume_attachment.py +3 -0
  52. pulumi_digitalocean/volume_snapshot.py +3 -0
  53. pulumi_digitalocean/vpc.py +3 -0
  54. pulumi_digitalocean/vpc_peering.py +3 -0
  55. {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0a1746040777.dist-info}/METADATA +1 -1
  56. pulumi_digitalocean-4.44.0a1746040777.dist-info/RECORD +112 -0
  57. {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0a1746040777.dist-info}/WHEEL +1 -1
  58. pulumi_digitalocean-4.43.0a1745559798.dist-info/RECORD +0 -112
  59. {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0a1746040777.dist-info}/top_level.txt +0 -0
@@ -260,6 +260,9 @@ class _AppState:
260
260
 
261
261
 
262
262
  class App(pulumi.CustomResource):
263
+
264
+ pulumi_type = "digitalocean:index/app:App"
265
+
263
266
  @overload
264
267
  def __init__(__self__,
265
268
  resource_name: str,
@@ -233,6 +233,9 @@ class _CdnState:
233
233
 
234
234
 
235
235
  class Cdn(pulumi.CustomResource):
236
+
237
+ pulumi_type = "digitalocean:index/cdn:Cdn"
238
+
236
239
  @overload
237
240
  def __init__(__self__,
238
241
  resource_name: str,
@@ -315,6 +315,9 @@ class _CertificateState:
315
315
 
316
316
 
317
317
  class Certificate(pulumi.CustomResource):
318
+
319
+ pulumi_type = "digitalocean:index/certificate:Certificate"
320
+
318
321
  @overload
319
322
  def __init__(__self__,
320
323
  resource_name: str,
@@ -193,6 +193,9 @@ class _ContainerRegistryState:
193
193
 
194
194
 
195
195
  class ContainerRegistry(pulumi.CustomResource):
196
+
197
+ pulumi_type = "digitalocean:index/containerRegistry:ContainerRegistry"
198
+
196
199
  @overload
197
200
  def __init__(__self__,
198
201
  resource_name: str,
@@ -161,6 +161,9 @@ class _ContainerRegistryDockerCredentialsState:
161
161
 
162
162
 
163
163
  class ContainerRegistryDockerCredentials(pulumi.CustomResource):
164
+
165
+ pulumi_type = "digitalocean:index/containerRegistryDockerCredentials:ContainerRegistryDockerCredentials"
166
+
164
167
  @overload
165
168
  def __init__(__self__,
166
169
  resource_name: str,
@@ -352,6 +352,9 @@ class _CustomImageState:
352
352
 
353
353
 
354
354
  class CustomImage(pulumi.CustomResource):
355
+
356
+ pulumi_type = "digitalocean:index/customImage:CustomImage"
357
+
355
358
  @overload
356
359
  def __init__(__self__,
357
360
  resource_name: str,
@@ -717,6 +717,9 @@ class _DatabaseClusterState:
717
717
 
718
718
 
719
719
  class DatabaseCluster(pulumi.CustomResource):
720
+
721
+ pulumi_type = "digitalocean:index/databaseCluster:DatabaseCluster"
722
+
720
723
  @overload
721
724
  def __init__(__self__,
722
725
  resource_name: str,
@@ -318,6 +318,9 @@ class _DatabaseConnectionPoolState:
318
318
 
319
319
 
320
320
  class DatabaseConnectionPool(pulumi.CustomResource):
321
+
322
+ pulumi_type = "digitalocean:index/databaseConnectionPool:DatabaseConnectionPool"
323
+
321
324
  @overload
322
325
  def __init__(__self__,
323
326
  resource_name: str,
@@ -97,6 +97,9 @@ class _DatabaseDbState:
97
97
 
98
98
 
99
99
  class DatabaseDb(pulumi.CustomResource):
100
+
101
+ pulumi_type = "digitalocean:index/databaseDb:DatabaseDb"
102
+
100
103
  @overload
101
104
  def __init__(__self__,
102
105
  resource_name: str,
@@ -98,6 +98,9 @@ class _DatabaseFirewallState:
98
98
 
99
99
 
100
100
  class DatabaseFirewall(pulumi.CustomResource):
101
+
102
+ pulumi_type = "digitalocean:index/databaseFirewall:DatabaseFirewall"
103
+
101
104
  @overload
102
105
  def __init__(__self__,
103
106
  resource_name: str,
@@ -609,6 +609,9 @@ class _DatabaseKafkaConfigState:
609
609
 
610
610
 
611
611
  class DatabaseKafkaConfig(pulumi.CustomResource):
612
+
613
+ pulumi_type = "digitalocean:index/databaseKafkaConfig:DatabaseKafkaConfig"
614
+
612
615
  @overload
613
616
  def __init__(__self__,
614
617
  resource_name: str,
@@ -215,6 +215,9 @@ class _DatabaseKafkaTopicState:
215
215
 
216
216
 
217
217
  class DatabaseKafkaTopic(pulumi.CustomResource):
218
+
219
+ pulumi_type = "digitalocean:index/databaseKafkaTopic:DatabaseKafkaTopic"
220
+
218
221
  @overload
219
222
  def __init__(__self__,
220
223
  resource_name: str,
@@ -225,6 +225,9 @@ class _DatabaseMongodbConfigState:
225
225
 
226
226
 
227
227
  class DatabaseMongodbConfig(pulumi.CustomResource):
228
+
229
+ pulumi_type = "digitalocean:index/databaseMongodbConfig:DatabaseMongodbConfig"
230
+
228
231
  @overload
229
232
  def __init__(__self__,
230
233
  resource_name: str,
@@ -929,6 +929,9 @@ class _DatabaseMysqlConfigState:
929
929
 
930
930
 
931
931
  class DatabaseMysqlConfig(pulumi.CustomResource):
932
+
933
+ pulumi_type = "digitalocean:index/databaseMysqlConfig:DatabaseMysqlConfig"
934
+
932
935
  @overload
933
936
  def __init__(__self__,
934
937
  resource_name: str,
@@ -1281,6 +1281,9 @@ class _DatabaseOpensearchConfigState:
1281
1281
 
1282
1282
 
1283
1283
  class DatabaseOpensearchConfig(pulumi.CustomResource):
1284
+
1285
+ pulumi_type = "digitalocean:index/databaseOpensearchConfig:DatabaseOpensearchConfig"
1286
+
1284
1287
  @overload
1285
1288
  def __init__(__self__,
1286
1289
  resource_name: str,
@@ -1699,6 +1699,9 @@ class _DatabasePostgresqlConfigState:
1699
1699
 
1700
1700
 
1701
1701
  class DatabasePostgresqlConfig(pulumi.CustomResource):
1702
+
1703
+ pulumi_type = "digitalocean:index/databasePostgresqlConfig:DatabasePostgresqlConfig"
1704
+
1702
1705
  @overload
1703
1706
  def __init__(__self__,
1704
1707
  resource_name: str,
@@ -425,6 +425,9 @@ class _DatabaseRedisConfigState:
425
425
 
426
426
 
427
427
  class DatabaseRedisConfig(pulumi.CustomResource):
428
+
429
+ pulumi_type = "digitalocean:index/databaseRedisConfig:DatabaseRedisConfig"
430
+
428
431
  @overload
429
432
  def __init__(__self__,
430
433
  resource_name: str,
@@ -394,6 +394,9 @@ class _DatabaseReplicaState:
394
394
 
395
395
 
396
396
  class DatabaseReplica(pulumi.CustomResource):
397
+
398
+ pulumi_type = "digitalocean:index/databaseReplica:DatabaseReplica"
399
+
397
400
  @overload
398
401
  def __init__(__self__,
399
402
  resource_name: str,
@@ -231,6 +231,9 @@ class _DatabaseUserState:
231
231
 
232
232
 
233
233
  class DatabaseUser(pulumi.CustomResource):
234
+
235
+ pulumi_type = "digitalocean:index/databaseUser:DatabaseUser"
236
+
234
237
  @overload
235
238
  def __init__(__self__,
236
239
  resource_name: str,
@@ -368,6 +368,9 @@ class _DnsRecordState:
368
368
 
369
369
 
370
370
  class DnsRecord(pulumi.CustomResource):
371
+
372
+ pulumi_type = "digitalocean:index/dnsRecord:DnsRecord"
373
+
371
374
  @overload
372
375
  def __init__(__self__,
373
376
  resource_name: str,
@@ -133,6 +133,9 @@ class _DomainState:
133
133
 
134
134
 
135
135
  class Domain(pulumi.CustomResource):
136
+
137
+ pulumi_type = "digitalocean:index/domain:Domain"
138
+
136
139
  @overload
137
140
  def __init__(__self__,
138
141
  resource_name: str,
@@ -879,6 +879,9 @@ class _DropletState:
879
879
 
880
880
 
881
881
  class Droplet(pulumi.CustomResource):
882
+
883
+ pulumi_type = "digitalocean:index/droplet:Droplet"
884
+
882
885
  @overload
883
886
  def __init__(__self__,
884
887
  resource_name: str,
@@ -206,6 +206,9 @@ class _DropletAutoscaleState:
206
206
 
207
207
 
208
208
  class DropletAutoscale(pulumi.CustomResource):
209
+
210
+ pulumi_type = "digitalocean:index/dropletAutoscale:DropletAutoscale"
211
+
209
212
  @overload
210
213
  def __init__(__self__,
211
214
  resource_name: str,
@@ -161,6 +161,9 @@ class _DropletSnapshotState:
161
161
 
162
162
 
163
163
  class DropletSnapshot(pulumi.CustomResource):
164
+
165
+ pulumi_type = "digitalocean:index/dropletSnapshot:DropletSnapshot"
166
+
164
167
  @overload
165
168
  def __init__(__self__,
166
169
  resource_name: str,
@@ -270,6 +270,9 @@ class _FirewallState:
270
270
 
271
271
 
272
272
  class Firewall(pulumi.CustomResource):
273
+
274
+ pulumi_type = "digitalocean:index/firewall:Firewall"
275
+
273
276
  @overload
274
277
  def __init__(__self__,
275
278
  resource_name: str,
@@ -145,6 +145,9 @@ class _FloatingIpState:
145
145
 
146
146
 
147
147
  class FloatingIp(pulumi.CustomResource):
148
+
149
+ pulumi_type = "digitalocean:index/floatingIp:FloatingIp"
150
+
148
151
  @overload
149
152
  def __init__(__self__,
150
153
  resource_name: str,
@@ -96,6 +96,9 @@ class _FloatingIpAssignmentState:
96
96
 
97
97
 
98
98
  class FloatingIpAssignment(pulumi.CustomResource):
99
+
100
+ pulumi_type = "digitalocean:index/floatingIpAssignment:FloatingIpAssignment"
101
+
99
102
  @overload
100
103
  def __init__(__self__,
101
104
  resource_name: str,
@@ -706,6 +706,9 @@ class _KubernetesClusterState:
706
706
 
707
707
 
708
708
  class KubernetesCluster(pulumi.CustomResource):
709
+
710
+ pulumi_type = "digitalocean:index/kubernetesCluster:KubernetesCluster"
711
+
709
712
  @overload
710
713
  def __init__(__self__,
711
714
  resource_name: str,
@@ -395,6 +395,9 @@ class _KubernetesNodePoolState:
395
395
 
396
396
 
397
397
  class KubernetesNodePool(pulumi.CustomResource):
398
+
399
+ pulumi_type = "digitalocean:index/kubernetesNodePool:KubernetesNodePool"
400
+
398
401
  @overload
399
402
  def __init__(__self__,
400
403
  resource_name: str,
@@ -45,6 +45,7 @@ class LoadBalancerArgs:
45
45
  size_unit: Optional[pulumi.Input[builtins.int]] = None,
46
46
  sticky_sessions: Optional[pulumi.Input['LoadBalancerStickySessionsArgs']] = None,
47
47
  target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
48
+ tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
48
49
  type: Optional[pulumi.Input[builtins.str]] = None,
49
50
  vpc_uuid: Optional[pulumi.Input[builtins.str]] = None):
50
51
  """
@@ -69,7 +70,6 @@ class LoadBalancerArgs:
69
70
  :param pulumi.Input[builtins.str] name: The Load Balancer name
70
71
  :param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
71
72
  :param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
72
- **NOTE**: this feature is in private preview, and may not be available for public use
73
73
  :param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
74
74
  :param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
75
75
  HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
@@ -80,8 +80,8 @@ class LoadBalancerArgs:
80
80
  :param pulumi.Input['LoadBalancerStickySessionsArgs'] sticky_sessions: A `sticky_sessions` block to be assigned to the
81
81
  Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
82
82
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
83
+ :param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
83
84
  :param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
84
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
85
85
  :param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
86
86
  """
87
87
  if algorithm is not None:
@@ -131,6 +131,8 @@ class LoadBalancerArgs:
131
131
  pulumi.set(__self__, "sticky_sessions", sticky_sessions)
132
132
  if target_load_balancer_ids is not None:
133
133
  pulumi.set(__self__, "target_load_balancer_ids", target_load_balancer_ids)
134
+ if tls_cipher_policy is not None:
135
+ pulumi.set(__self__, "tls_cipher_policy", tls_cipher_policy)
134
136
  if type is not None:
135
137
  pulumi.set(__self__, "type", type)
136
138
  if vpc_uuid is not None:
@@ -315,7 +317,6 @@ class LoadBalancerArgs:
315
317
  def network_stack(self) -> Optional[pulumi.Input[builtins.str]]:
316
318
  """
317
319
  The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
318
- **NOTE**: this feature is in private preview, and may not be available for public use
319
320
  """
320
321
  return pulumi.get(self, "network_stack")
321
322
 
@@ -410,12 +411,23 @@ class LoadBalancerArgs:
410
411
  def target_load_balancer_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
411
412
  pulumi.set(self, "target_load_balancer_ids", value)
412
413
 
414
+ @property
415
+ @pulumi.getter(name="tlsCipherPolicy")
416
+ def tls_cipher_policy(self) -> Optional[pulumi.Input[builtins.str]]:
417
+ """
418
+ The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
419
+ """
420
+ return pulumi.get(self, "tls_cipher_policy")
421
+
422
+ @tls_cipher_policy.setter
423
+ def tls_cipher_policy(self, value: Optional[pulumi.Input[builtins.str]]):
424
+ pulumi.set(self, "tls_cipher_policy", value)
425
+
413
426
  @property
414
427
  @pulumi.getter
415
428
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
416
429
  """
417
430
  The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
418
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
419
431
  """
420
432
  return pulumi.get(self, "type")
421
433
 
@@ -465,6 +477,7 @@ class _LoadBalancerState:
465
477
  status: Optional[pulumi.Input[builtins.str]] = None,
466
478
  sticky_sessions: Optional[pulumi.Input['LoadBalancerStickySessionsArgs']] = None,
467
479
  target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
480
+ tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
468
481
  type: Optional[pulumi.Input[builtins.str]] = None,
469
482
  vpc_uuid: Optional[pulumi.Input[builtins.str]] = None):
470
483
  """
@@ -491,7 +504,6 @@ class _LoadBalancerState:
491
504
  :param pulumi.Input[builtins.str] name: The Load Balancer name
492
505
  :param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
493
506
  :param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
494
- **NOTE**: this feature is in private preview, and may not be available for public use
495
507
  :param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
496
508
  :param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
497
509
  HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
@@ -502,8 +514,8 @@ class _LoadBalancerState:
502
514
  :param pulumi.Input['LoadBalancerStickySessionsArgs'] sticky_sessions: A `sticky_sessions` block to be assigned to the
503
515
  Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
504
516
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
517
+ :param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
505
518
  :param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
506
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
507
519
  :param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
508
520
  """
509
521
  if algorithm is not None:
@@ -561,6 +573,8 @@ class _LoadBalancerState:
561
573
  pulumi.set(__self__, "sticky_sessions", sticky_sessions)
562
574
  if target_load_balancer_ids is not None:
563
575
  pulumi.set(__self__, "target_load_balancer_ids", target_load_balancer_ids)
576
+ if tls_cipher_policy is not None:
577
+ pulumi.set(__self__, "tls_cipher_policy", tls_cipher_policy)
564
578
  if type is not None:
565
579
  pulumi.set(__self__, "type", type)
566
580
  if vpc_uuid is not None:
@@ -778,7 +792,6 @@ class _LoadBalancerState:
778
792
  def network_stack(self) -> Optional[pulumi.Input[builtins.str]]:
779
793
  """
780
794
  The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
781
- **NOTE**: this feature is in private preview, and may not be available for public use
782
795
  """
783
796
  return pulumi.get(self, "network_stack")
784
797
 
@@ -882,12 +895,23 @@ class _LoadBalancerState:
882
895
  def target_load_balancer_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
883
896
  pulumi.set(self, "target_load_balancer_ids", value)
884
897
 
898
+ @property
899
+ @pulumi.getter(name="tlsCipherPolicy")
900
+ def tls_cipher_policy(self) -> Optional[pulumi.Input[builtins.str]]:
901
+ """
902
+ The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
903
+ """
904
+ return pulumi.get(self, "tls_cipher_policy")
905
+
906
+ @tls_cipher_policy.setter
907
+ def tls_cipher_policy(self, value: Optional[pulumi.Input[builtins.str]]):
908
+ pulumi.set(self, "tls_cipher_policy", value)
909
+
885
910
  @property
886
911
  @pulumi.getter
887
912
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
888
913
  """
889
914
  The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
890
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
891
915
  """
892
916
  return pulumi.get(self, "type")
893
917
 
@@ -909,6 +933,9 @@ class _LoadBalancerState:
909
933
 
910
934
 
911
935
  class LoadBalancer(pulumi.CustomResource):
936
+
937
+ pulumi_type = "digitalocean:index/loadBalancer:LoadBalancer"
938
+
912
939
  @overload
913
940
  def __init__(__self__,
914
941
  resource_name: str,
@@ -935,6 +962,7 @@ class LoadBalancer(pulumi.CustomResource):
935
962
  size_unit: Optional[pulumi.Input[builtins.int]] = None,
936
963
  sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
937
964
  target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
965
+ tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
938
966
  type: Optional[pulumi.Input[builtins.str]] = None,
939
967
  vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
940
968
  __props__=None):
@@ -1005,7 +1033,6 @@ class LoadBalancer(pulumi.CustomResource):
1005
1033
  :param pulumi.Input[builtins.str] name: The Load Balancer name
1006
1034
  :param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
1007
1035
  :param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
1008
- **NOTE**: this feature is in private preview, and may not be available for public use
1009
1036
  :param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
1010
1037
  :param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
1011
1038
  HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
@@ -1016,8 +1043,8 @@ class LoadBalancer(pulumi.CustomResource):
1016
1043
  :param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
1017
1044
  Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
1018
1045
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
1046
+ :param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
1019
1047
  :param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
1020
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
1021
1048
  :param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
1022
1049
  """
1023
1050
  ...
@@ -1108,6 +1135,7 @@ class LoadBalancer(pulumi.CustomResource):
1108
1135
  size_unit: Optional[pulumi.Input[builtins.int]] = None,
1109
1136
  sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
1110
1137
  target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1138
+ tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
1111
1139
  type: Optional[pulumi.Input[builtins.str]] = None,
1112
1140
  vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
1113
1141
  __props__=None):
@@ -1141,6 +1169,7 @@ class LoadBalancer(pulumi.CustomResource):
1141
1169
  __props__.__dict__["size_unit"] = size_unit
1142
1170
  __props__.__dict__["sticky_sessions"] = sticky_sessions
1143
1171
  __props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
1172
+ __props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
1144
1173
  __props__.__dict__["type"] = type
1145
1174
  __props__.__dict__["vpc_uuid"] = vpc_uuid
1146
1175
  __props__.__dict__["ip"] = None
@@ -1183,6 +1212,7 @@ class LoadBalancer(pulumi.CustomResource):
1183
1212
  status: Optional[pulumi.Input[builtins.str]] = None,
1184
1213
  sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
1185
1214
  target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1215
+ tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
1186
1216
  type: Optional[pulumi.Input[builtins.str]] = None,
1187
1217
  vpc_uuid: Optional[pulumi.Input[builtins.str]] = None) -> 'LoadBalancer':
1188
1218
  """
@@ -1214,7 +1244,6 @@ class LoadBalancer(pulumi.CustomResource):
1214
1244
  :param pulumi.Input[builtins.str] name: The Load Balancer name
1215
1245
  :param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
1216
1246
  :param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
1217
- **NOTE**: this feature is in private preview, and may not be available for public use
1218
1247
  :param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
1219
1248
  :param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
1220
1249
  HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
@@ -1225,8 +1254,8 @@ class LoadBalancer(pulumi.CustomResource):
1225
1254
  :param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
1226
1255
  Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
1227
1256
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
1257
+ :param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
1228
1258
  :param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
1229
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
1230
1259
  :param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
1231
1260
  """
1232
1261
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1259,6 +1288,7 @@ class LoadBalancer(pulumi.CustomResource):
1259
1288
  __props__.__dict__["status"] = status
1260
1289
  __props__.__dict__["sticky_sessions"] = sticky_sessions
1261
1290
  __props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
1291
+ __props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
1262
1292
  __props__.__dict__["type"] = type
1263
1293
  __props__.__dict__["vpc_uuid"] = vpc_uuid
1264
1294
  return LoadBalancer(resource_name, opts=opts, __props__=__props__)
@@ -1407,7 +1437,6 @@ class LoadBalancer(pulumi.CustomResource):
1407
1437
  def network_stack(self) -> pulumi.Output[Optional[builtins.str]]:
1408
1438
  """
1409
1439
  The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
1410
- **NOTE**: this feature is in private preview, and may not be available for public use
1411
1440
  """
1412
1441
  return pulumi.get(self, "network_stack")
1413
1442
 
@@ -1475,12 +1504,19 @@ class LoadBalancer(pulumi.CustomResource):
1475
1504
  """
1476
1505
  return pulumi.get(self, "target_load_balancer_ids")
1477
1506
 
1507
+ @property
1508
+ @pulumi.getter(name="tlsCipherPolicy")
1509
+ def tls_cipher_policy(self) -> pulumi.Output[Optional[builtins.str]]:
1510
+ """
1511
+ The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
1512
+ """
1513
+ return pulumi.get(self, "tls_cipher_policy")
1514
+
1478
1515
  @property
1479
1516
  @pulumi.getter
1480
1517
  def type(self) -> pulumi.Output[builtins.str]:
1481
1518
  """
1482
1519
  The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
1483
- **NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
1484
1520
  """
1485
1521
  return pulumi.get(self, "type")
1486
1522
 
@@ -402,6 +402,9 @@ class _MonitorAlertState:
402
402
 
403
403
 
404
404
  class MonitorAlert(pulumi.CustomResource):
405
+
406
+ pulumi_type = "digitalocean:index/monitorAlert:MonitorAlert"
407
+
405
408
  @overload
406
409
  def __init__(__self__,
407
410
  resource_name: str,
@@ -248,6 +248,9 @@ class _PartnerAttachmentState:
248
248
 
249
249
 
250
250
  class PartnerAttachment(pulumi.CustomResource):
251
+
252
+ pulumi_type = "digitalocean:index/partnerAttachment:PartnerAttachment"
253
+
251
254
  @overload
252
255
  def __init__(__self__,
253
256
  resource_name: str,
@@ -290,6 +290,9 @@ class _ProjectState:
290
290
 
291
291
 
292
292
  class Project(pulumi.CustomResource):
293
+
294
+ pulumi_type = "digitalocean:index/project:Project"
295
+
293
296
  @overload
294
297
  def __init__(__self__,
295
298
  resource_name: str,
@@ -96,6 +96,9 @@ class _ProjectResourcesState:
96
96
 
97
97
 
98
98
  class ProjectResources(pulumi.CustomResource):
99
+
100
+ pulumi_type = "digitalocean:index/projectResources:ProjectResources"
101
+
99
102
  @overload
100
103
  def __init__(__self__,
101
104
  resource_name: str,
@@ -174,6 +174,9 @@ class ProviderArgs:
174
174
 
175
175
 
176
176
  class Provider(pulumi.ProviderResource):
177
+
178
+ pulumi_type = "pulumi:providers:digitalocean"
179
+
177
180
  @overload
178
181
  def __init__(__self__,
179
182
  resource_name: str,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "digitalocean",
4
- "version": "4.43.0-alpha.1745559798"
4
+ "version": "4.44.0-alpha.1746040777"
5
5
  }
@@ -145,6 +145,9 @@ class _ReservedIpState:
145
145
 
146
146
 
147
147
  class ReservedIp(pulumi.CustomResource):
148
+
149
+ pulumi_type = "digitalocean:index/reservedIp:ReservedIp"
150
+
148
151
  @overload
149
152
  def __init__(__self__,
150
153
  resource_name: str,
@@ -96,6 +96,9 @@ class _ReservedIpAssignmentState:
96
96
 
97
97
 
98
98
  class ReservedIpAssignment(pulumi.CustomResource):
99
+
100
+ pulumi_type = "digitalocean:index/reservedIpAssignment:ReservedIpAssignment"
101
+
99
102
  @overload
100
103
  def __init__(__self__,
101
104
  resource_name: str,
@@ -129,6 +129,9 @@ class _ReservedIpv6State:
129
129
 
130
130
 
131
131
  class ReservedIpv6(pulumi.CustomResource):
132
+
133
+ pulumi_type = "digitalocean:index/reservedIpv6:ReservedIpv6"
134
+
132
135
  @overload
133
136
  def __init__(__self__,
134
137
  resource_name: str,
@@ -96,6 +96,9 @@ class _ReservedIpv6AssignmentState:
96
96
 
97
97
 
98
98
  class ReservedIpv6Assignment(pulumi.CustomResource):
99
+
100
+ pulumi_type = "digitalocean:index/reservedIpv6Assignment:ReservedIpv6Assignment"
101
+
99
102
  @overload
100
103
  def __init__(__self__,
101
104
  resource_name: str,
@@ -317,6 +317,9 @@ class _SpacesBucketState:
317
317
 
318
318
 
319
319
  class SpacesBucket(pulumi.CustomResource):
320
+
321
+ pulumi_type = "digitalocean:index/spacesBucket:SpacesBucket"
322
+
320
323
  @overload
321
324
  def __init__(__self__,
322
325
  resource_name: str,
@@ -129,6 +129,9 @@ class _SpacesBucketCorsConfigurationState:
129
129
 
130
130
 
131
131
  class SpacesBucketCorsConfiguration(pulumi.CustomResource):
132
+
133
+ pulumi_type = "digitalocean:index/spacesBucketCorsConfiguration:SpacesBucketCorsConfiguration"
134
+
132
135
  @overload
133
136
  def __init__(__self__,
134
137
  resource_name: str,
@@ -579,6 +579,9 @@ class _SpacesBucketObjectState:
579
579
 
580
580
 
581
581
  class SpacesBucketObject(pulumi.CustomResource):
582
+
583
+ pulumi_type = "digitalocean:index/spacesBucketObject:SpacesBucketObject"
584
+
582
585
  @overload
583
586
  def __init__(__self__,
584
587
  resource_name: str,
@@ -127,6 +127,9 @@ class _SpacesBucketPolicyState:
127
127
 
128
128
 
129
129
  class SpacesBucketPolicy(pulumi.CustomResource):
130
+
131
+ pulumi_type = "digitalocean:index/spacesBucketPolicy:SpacesBucketPolicy"
132
+
130
133
  @overload
131
134
  def __init__(__self__,
132
135
  resource_name: str,
@@ -148,6 +148,9 @@ class _SpacesKeyState:
148
148
 
149
149
 
150
150
  class SpacesKey(pulumi.CustomResource):
151
+
152
+ pulumi_type = "digitalocean:index/spacesKey:SpacesKey"
153
+
151
154
  @overload
152
155
  def __init__(__self__,
153
156
  resource_name: str,
@@ -117,6 +117,9 @@ class _SshKeyState:
117
117
 
118
118
 
119
119
  class SshKey(pulumi.CustomResource):
120
+
121
+ pulumi_type = "digitalocean:index/sshKey:SshKey"
122
+
120
123
  @overload
121
124
  def __init__(__self__,
122
125
  resource_name: str,
@@ -162,6 +162,9 @@ class _TagState:
162
162
 
163
163
 
164
164
  class Tag(pulumi.CustomResource):
165
+
166
+ pulumi_type = "digitalocean:index/tag:Tag"
167
+
165
168
  @overload
166
169
  def __init__(__self__,
167
170
  resource_name: str,
@@ -257,6 +257,9 @@ class _UptimeAlertState:
257
257
 
258
258
 
259
259
  class UptimeAlert(pulumi.CustomResource):
260
+
261
+ pulumi_type = "digitalocean:index/uptimeAlert:UptimeAlert"
262
+
260
263
  @overload
261
264
  def __init__(__self__,
262
265
  resource_name: str,
@@ -193,6 +193,9 @@ class _UptimeCheckState:
193
193
 
194
194
 
195
195
  class UptimeCheck(pulumi.CustomResource):
196
+
197
+ pulumi_type = "digitalocean:index/uptimeCheck:UptimeCheck"
198
+
196
199
  @overload
197
200
  def __init__(__self__,
198
201
  resource_name: str,
@@ -377,6 +377,9 @@ class _VolumeState:
377
377
 
378
378
 
379
379
  class Volume(pulumi.CustomResource):
380
+
381
+ pulumi_type = "digitalocean:index/volume:Volume"
382
+
380
383
  @overload
381
384
  def __init__(__self__,
382
385
  resource_name: str,
@@ -96,6 +96,9 @@ class _VolumeAttachmentState:
96
96
 
97
97
 
98
98
  class VolumeAttachment(pulumi.CustomResource):
99
+
100
+ pulumi_type = "digitalocean:index/volumeAttachment:VolumeAttachment"
101
+
99
102
  @overload
100
103
  def __init__(__self__,
101
104
  resource_name: str,
@@ -193,6 +193,9 @@ class _VolumeSnapshotState:
193
193
 
194
194
 
195
195
  class VolumeSnapshot(pulumi.CustomResource):
196
+
197
+ pulumi_type = "digitalocean:index/volumeSnapshot:VolumeSnapshot"
198
+
196
199
  @overload
197
200
  def __init__(__self__,
198
201
  resource_name: str,
@@ -209,6 +209,9 @@ class _VpcState:
209
209
 
210
210
 
211
211
  class Vpc(pulumi.CustomResource):
212
+
213
+ pulumi_type = "digitalocean:index/vpc:Vpc"
214
+
212
215
  @overload
213
216
  def __init__(__self__,
214
217
  resource_name: str,
@@ -129,6 +129,9 @@ class _VpcPeeringState:
129
129
 
130
130
 
131
131
  class VpcPeering(pulumi.CustomResource):
132
+
133
+ pulumi_type = "digitalocean:index/vpcPeering:VpcPeering"
134
+
132
135
  @overload
133
136
  def __init__(__self__,
134
137
  resource_name: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_digitalocean
3
- Version: 4.43.0a1745559798
3
+ Version: 4.44.0a1746040777
4
4
  Summary: A Pulumi package for creating and managing DigitalOcean cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,112 @@
1
+ pulumi_digitalocean/__init__.py,sha256=C-ZqNpaMDzGInbUtZC2UZgOIyiYsZkiTE-dJxU0oEJ8,13599
2
+ pulumi_digitalocean/_enums.py,sha256=lqt4VRtPlHgoRGQ3i30H5jadSEmP8g0dmb7jAiWQeWc,9798
3
+ pulumi_digitalocean/_inputs.py,sha256=dEWDJjNIh84rakZFZNNexitQ8lcbUSLiWLrTgGafVBA,662972
4
+ pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
+ pulumi_digitalocean/app.py,sha256=qeIsxVpiB0H02a-WVZL-sNTTDRm9OVt3GDbjJ8Gkgts,25076
6
+ pulumi_digitalocean/cdn.py,sha256=AIMZz2umAgOXcwFn4pMC5lPPho0zEO1UPSGJeiTCKqo,22610
7
+ pulumi_digitalocean/certificate.py,sha256=L_ewkisZ2zAqe6FAnIeD-9CW_oB5EPDV0WeOshWSC74,29456
8
+ pulumi_digitalocean/container_registry.py,sha256=GMaEJMI9LL8hyETON0XWgaZ0YzXaN1D3PBOvMv7kJdw,17482
9
+ pulumi_digitalocean/container_registry_docker_credentials.py,sha256=CaBQRKVF6XnDr2BxR0FdZhdRHK3mThDzmcwk6os3Pq0,18092
10
+ pulumi_digitalocean/custom_image.py,sha256=md2CNcktr5tdaS2WrAiPb-WG04UXTphKlY-V78JbdqE,28757
11
+ pulumi_digitalocean/database_cluster.py,sha256=8YLariHN_cOsvusRhasCbuA_sSd_PeaGlsGYhGJY_wE,67100
12
+ pulumi_digitalocean/database_connection_pool.py,sha256=6wW9hmiYMDnzUW9nYLryOZojUGUTQg4coJETsG2TmRQ,26592
13
+ pulumi_digitalocean/database_db.py,sha256=KaUZT6SE9dbw9E_iKA_4moeRs3yLDmQJzyxuqE4xkm8,10005
14
+ pulumi_digitalocean/database_firewall.py,sha256=ktaVv0eoiUoaGB44WKFIjtMKrkUFy4-yrwBTe8qozWE,15781
15
+ pulumi_digitalocean/database_kafka_config.py,sha256=Vzq-M-2FYUn6ozitzI3ZqThzBA2rJMgapTKegureaB8,62480
16
+ pulumi_digitalocean/database_kafka_topic.py,sha256=8ZeTMI8BiG4LOnr5bMYmIj8tHe1Qv1mPZDKQKg7hCy4,22739
17
+ pulumi_digitalocean/database_mongodb_config.py,sha256=2lqIKT3tPph8l9pbMRMpp0fhz9kIfZnGQbu481YTQZ0,33707
18
+ pulumi_digitalocean/database_mysql_config.py,sha256=iSZFxR3LjJXEFeqswPVU_vpR0UeuMTaxM05Aqsm9Y-o,85857
19
+ pulumi_digitalocean/database_opensearch_config.py,sha256=AROCdfggAGf7hCICzu-MwzeiacB3WdRwzRe5sKaCL00,138090
20
+ pulumi_digitalocean/database_postgresql_config.py,sha256=g9LrCHhvaWT-VtjWFs9bz9CWBOzJ-1pdQsCWlk814f4,167736
21
+ pulumi_digitalocean/database_redis_config.py,sha256=OcXWh26LPGEkFyaP-XAQVTloUsSvy-tAAbGRpELcqDo,41367
22
+ pulumi_digitalocean/database_replica.py,sha256=0w42uZQhpiuhbEI7Sv44yjiCzBSu1XKo7klDX2mi4qo,33202
23
+ pulumi_digitalocean/database_user.py,sha256=dVchmWVsjqFdSNPHOZpC3arzROZ8VkLEXTGH_tLQjCo,25692
24
+ pulumi_digitalocean/dns_record.py,sha256=vGWvlDuMqMet98BR9LkLtwnmXJZHNlWMpBxEE-Qn5Bs,28662
25
+ pulumi_digitalocean/domain.py,sha256=yJM1vtBhn4nrA2F0KM16SXmMSe3kRMGwI4fm8gD3UrY,11157
26
+ pulumi_digitalocean/droplet.py,sha256=to3NZYWVkv0roUCpBwaxpY6tTl8SZaor7S1Mtx6s5Kc,76237
27
+ pulumi_digitalocean/droplet_autoscale.py,sha256=Ca-NO3SsEFRZYRglEcJ2FEK0x5ACMS7Vrs_CSrmsuRA,21663
28
+ pulumi_digitalocean/droplet_snapshot.py,sha256=vExDXFGRDegYijCpZ1Aw7yHOOgevDCtofkUEOwTD4X0,15012
29
+ pulumi_digitalocean/firewall.py,sha256=6KkSrjyOejpDs8PJp8A4V5YYEPT1K0l8ol4Zvw4Zfio,28372
30
+ pulumi_digitalocean/floating_ip.py,sha256=wime-L-zAwvlOonebaL5fV1dvZ-w82JXXAM-53qF6YQ,13671
31
+ pulumi_digitalocean/floating_ip_assignment.py,sha256=qTKIbS79MwA4UMhHmCWKI1v6ET27VNPxIFq3AmS_elg,11050
32
+ pulumi_digitalocean/get_account.py,sha256=eWNvJWQyp09MAg8C_WohdVjcndV1F43eAV07FsgBd9k,6931
33
+ pulumi_digitalocean/get_app.py,sha256=9wUMm3MBwmvpLlcrjgS6x8tu4sZCQvxJDwSAOJpDn00,10194
34
+ pulumi_digitalocean/get_certificate.py,sha256=i-shN_vysw9VelDorbYa0ZU1Zjk6Vmar1i-0mI1s3gA,7402
35
+ pulumi_digitalocean/get_container_registry.py,sha256=aL3-79goOo7V2NgWtgbH6sE6rQWuY6MwT3nkCJUrMDg,8242
36
+ pulumi_digitalocean/get_database_ca.py,sha256=YxAPKQh2NuOhEEdMLP3wfqN2LSMsaHMamN97rHPri18,4404
37
+ pulumi_digitalocean/get_database_cluster.py,sha256=Ktd-jBpCPQV4xyJ_P4Xj8ZBCGlY3Mg6Ak6UyKIxWbHc,17822
38
+ pulumi_digitalocean/get_database_connection_pool.py,sha256=9eI9vX6VpTfS_jYUv5Icg0R_XzMQ0XJAhClWGvfiPSQ,10323
39
+ pulumi_digitalocean/get_database_replica.py,sha256=ak2oQqnSG-wLnyUJk8QUDHfRTfEU-y2S0Op6mkpwisQ,12160
40
+ pulumi_digitalocean/get_database_user.py,sha256=a84subXsDnADoeBuGY1AiJiZ1_3oOTlk10AVYt53cKI,8291
41
+ pulumi_digitalocean/get_domain.py,sha256=J8cUTjZcWHjU5prGLFlIIPEtdWSu9dqiYZu_77iy4kU,5771
42
+ pulumi_digitalocean/get_domains.py,sha256=8efRQANNKQONJUEOJIqUKd_PopfiY1NL8Yi6WH5s9s4,6890
43
+ pulumi_digitalocean/get_droplet.py,sha256=Kmf15nUIlbSCQnb_6h0sMCodfJyW7bfqRu-vD_CnLwY,19515
44
+ pulumi_digitalocean/get_droplet_autoscale.py,sha256=_qlqCfOKQEK40D-14PlJdwUlS5tU942npK8sTf44qjU,7755
45
+ pulumi_digitalocean/get_droplet_snapshot.py,sha256=mkrNa0ZMWXKWRmNcd4HT7Zk2iLPHVsUxrK7nPogNquA,11703
46
+ pulumi_digitalocean/get_droplets.py,sha256=U-iCiC4_E0ehLDsNgEXlrgr7ESgxOf0NLAe8cd4rpCw,8981
47
+ pulumi_digitalocean/get_firewall.py,sha256=0UTVRSAjqLHtGfk-dOhTwWVYoy9nEukOtr4sS8-fiWo,10479
48
+ pulumi_digitalocean/get_floating_ip.py,sha256=lX8WO2gPXLz1cNi4kbYvxg7sTnq3sxgNEzLJUAYabCc,6724
49
+ pulumi_digitalocean/get_image.py,sha256=WCpCXCvYz4SVxc-7Wx1O1M6Y5qTzQynN7Z0LiG-OwgA,14009
50
+ pulumi_digitalocean/get_images.py,sha256=jkWYcSiqnHK9LN1gVErEoYgYSEeGLw5nB0bycg01ZaM,7836
51
+ pulumi_digitalocean/get_kubernetes_cluster.py,sha256=mvaDzQWDuGj2a8gXs2JncopW40rtRq5lrSYDKpJmI8Y,19617
52
+ pulumi_digitalocean/get_kubernetes_versions.py,sha256=UKgxMiEc-BnOoQ_H8amlUunRclIV4Kvtmbz1ebqeO6Y,7823
53
+ pulumi_digitalocean/get_load_balancer.py,sha256=Ix3tKK9l2rptFhcgyQUGmrs52kn_sQNdQiANDK0dCy4,19224
54
+ pulumi_digitalocean/get_partner_attachment.py,sha256=ZDawF2-9nsN3OyV4x0BMBgqsxwsYqqLmGbo7UIe-mKw,7272
55
+ pulumi_digitalocean/get_project.py,sha256=6oPHX1x1mOabfMX4lPETTbCVWH_iTvb91TUFkCuHqzY,9354
56
+ pulumi_digitalocean/get_projects.py,sha256=8cgH0wxEATLV-TroHAPzzaHFAVvesYc5cBPhRCvZlkw,7756
57
+ pulumi_digitalocean/get_record.py,sha256=Ualyt6ENvkhE3yZY9n9PPn_rW74QA6XzpLjYlbsLhO0,9124
58
+ pulumi_digitalocean/get_records.py,sha256=mR-tzaP3sgYegc8RNXscdZAO7ydz6qyg7AIpyUhFJgU,7070
59
+ pulumi_digitalocean/get_region.py,sha256=35Y5CIByzqFCJZV7L3KKCMuQeoURlAtKTIkwhlbTpJ0,5981
60
+ pulumi_digitalocean/get_regions.py,sha256=xOCZTH8VLkFWRTpXseeSmcBxajEADFB5SmJ0HphIptE,7517
61
+ pulumi_digitalocean/get_reserved_ip.py,sha256=vBgi0B2pVdkYCa2yPuHuyOuDDu_cJMdg8oZNlOrV0dU,5498
62
+ pulumi_digitalocean/get_reserved_ipv6.py,sha256=qCMDdUZIou1leg_79rN44hCMBcaK5NoF4P62nNGQ8-E,5317
63
+ pulumi_digitalocean/get_sizes.py,sha256=C5zDSUTAdp6dG2krQQWMS50BKyv5fYEOJRsyoIp3bgU,5239
64
+ pulumi_digitalocean/get_spaces_bucket.py,sha256=jcPRlN_DE6VxxlG0k4GEwjkeXSguZZUh6_HDFMFy2fI,6789
65
+ pulumi_digitalocean/get_spaces_bucket_object.py,sha256=NfVTy1PIjVXgRf4lSLTA8jPBCPtE_sc3tKjEX9pReNI,17516
66
+ pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=UNibTVrp32jAHT4zAd90WGIA58Cij-KJBCUAQSN2ZD4,10136
67
+ pulumi_digitalocean/get_spaces_buckets.py,sha256=8rk_VtcEYLYX3mxnKsYS86pROHp8vOvg0ZlIBVMDB_E,7423
68
+ pulumi_digitalocean/get_spaces_key.py,sha256=J5rclj6Oi_ZKc1_dPunVUZt_-sWJfneZk0zP4cpBy8Q,5378
69
+ pulumi_digitalocean/get_ssh_key.py,sha256=yMbWnRd697Zarf8fhd_sLA1FZKvg2V0-GEu2b6xRB2o,5617
70
+ pulumi_digitalocean/get_ssh_keys.py,sha256=Z6JC0a9FRnY870Hqek4QNvOSPhO26xS6e0FOyQbzM9c,6902
71
+ pulumi_digitalocean/get_tag.py,sha256=5PfrquC6npffC7KxHTt3dD4fe95vRx-J5yEd7Y80rA0,8409
72
+ pulumi_digitalocean/get_tags.py,sha256=6SwyOf6z7rhbBs_hdlz0joP-p1xZZdplaXwUxfKo--A,5678
73
+ pulumi_digitalocean/get_volume.py,sha256=9liGkSsGd-jz9jjrhYQPFZnjTo0Y86DZTgan4HnWcTk,10375
74
+ pulumi_digitalocean/get_volume_snapshot.py,sha256=06hMblHirXc9PnB0Re3IWch-ky73C4lflSSLuC5w3II,12120
75
+ pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQw,8934
76
+ pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
77
+ pulumi_digitalocean/kubernetes_cluster.py,sha256=YxT847azv-mpCxkCC6-UI2KuB6hz2RyKmWXMuCVq8ng,69154
78
+ pulumi_digitalocean/kubernetes_node_pool.py,sha256=MtFr_MCeF80TXvfndOjJuWpnK_kcm8FcSA_wAVWvmYw,39053
79
+ pulumi_digitalocean/load_balancer.py,sha256=Hwc8qOxgyMX5SZQVI6aYjwHIB0Nee5I6UuRnBssJQNc,84150
80
+ pulumi_digitalocean/monitor_alert.py,sha256=HTKmY0a2jB6_1GcG3pFXiA6-oteis1WOv-AlXG4BY7Q,38240
81
+ pulumi_digitalocean/outputs.py,sha256=YqOzbhye25k5mhZxkcSrq2yOT-d5lF65S7ESbzqz-YM,742903
82
+ pulumi_digitalocean/partner_attachment.py,sha256=p77CcrC393vOXkChTy4n_GEnNFproGhC5IFHQ9rs9ic,18698
83
+ pulumi_digitalocean/project.py,sha256=baXvxNL2Xgtxc7aDwp5LSPXKNgOooV8fUTzgdziul1c,25703
84
+ pulumi_digitalocean/project_resources.py,sha256=gdHcRZwrmdIubOwWW-WO15t61hew1GseUoQTbTtCuGo,10788
85
+ pulumi_digitalocean/provider.py,sha256=_PQ67VyHsZBEA6RYgCKtbrhbJ7283Omyisgx0MCqGNE,15313
86
+ pulumi_digitalocean/pulumi-plugin.json,sha256=2lpx34wUiaaZ71ZAGeJ8oS9sbSfQVN-mYEioufRVfF0,89
87
+ pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ pulumi_digitalocean/reserved_ip.py,sha256=f8_U3CAICvWtfAGBokIjQeM3IMg6N8W8a_GrX5m7uJs,13353
89
+ pulumi_digitalocean/reserved_ip_assignment.py,sha256=yeZL_yfyEzLjXk9OOL-Cy62jRYgY8bhdCBqwI1CS7Hk,10708
90
+ pulumi_digitalocean/reserved_ipv6.py,sha256=3mFwb7BBo4iT7D4XUXu0SK4ACOujeas3cyb2qyGWxks,11118
91
+ pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=OpWp_ENg4RW9Swt3szlYTb5WBAiUKJ6nOTjTvK7ZY1c,9216
92
+ pulumi_digitalocean/spaces_bucket.py,sha256=vf4D0cou7kmD5pwSHj7LKlkxaWP7jbcxac2XhaYGfMA,31191
93
+ pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=eJJRZUVXEgybYjwRLud8thFrro2wfxKhyc3jLMrmk5s,14022
94
+ pulumi_digitalocean/spaces_bucket_object.py,sha256=eKdrU3O2ybzQwHtAikigYYkDrrB7Ii8pGhY6BkApHvo,55186
95
+ pulumi_digitalocean/spaces_bucket_policy.py,sha256=1nEfwcem6XJNJTnTNIAiBYP0VIpeIvhXmifSuqVSFLc,12974
96
+ pulumi_digitalocean/spaces_key.py,sha256=k84E8Kcj0EXyAeMQ7J-7Fn86r4-rrlC1PdcFwdl0Rgs,14959
97
+ pulumi_digitalocean/ssh_key.py,sha256=Q_0VbBKQU4nkMg2OoP2qX6I_smXAXocLHugZoB2QSXs,11263
98
+ pulumi_digitalocean/tag.py,sha256=qPfyYHt0qnYn18HS-zoJNKENf0fkqqwokPvXphBDkK8,15197
99
+ pulumi_digitalocean/uptime_alert.py,sha256=RxntizTQ1u97zilnihUOPE050r4qF1IDlFBCf4aVmLE,21702
100
+ pulumi_digitalocean/uptime_check.py,sha256=Fu3ujCe88zGL6yNqQkuC7fKEZT8Oe7OtrlMnJda245A,15370
101
+ pulumi_digitalocean/volume.py,sha256=Z7S2NBgD_Q6qdWzJ8rN0wWvJDzf5D1KowYHJXk-B6Po,34784
102
+ pulumi_digitalocean/volume_attachment.py,sha256=fEGPhav9eyKo_rnG5FA9CPKDLDf5ho08hyj78k85_Aw,10284
103
+ pulumi_digitalocean/volume_snapshot.py,sha256=VMcGj7-y3jJfnQ3_ENJ1Z_QvfWi1Mq44-qU-1LdnwDY,16741
104
+ pulumi_digitalocean/vpc.py,sha256=ZF90ShEhDJ52I1BXOX07_s0oLrMJxYxpyOzOOB-4ovo,19876
105
+ pulumi_digitalocean/vpc_peering.py,sha256=GwgGCtgu0LlKNBY4sVdoBGDjG_elic4foNfYpof0i58,14824
106
+ pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
107
+ pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
108
+ pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
109
+ pulumi_digitalocean-4.44.0a1746040777.dist-info/METADATA,sha256=tUwzz89OCFbxDVoTofcJbgHZ3sQd5T9oFaVXmwuPJfQ,3849
110
+ pulumi_digitalocean-4.44.0a1746040777.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
111
+ pulumi_digitalocean-4.44.0a1746040777.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
112
+ pulumi_digitalocean-4.44.0a1746040777.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.1)
2
+ Generator: setuptools (80.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,112 +0,0 @@
1
- pulumi_digitalocean/__init__.py,sha256=C-ZqNpaMDzGInbUtZC2UZgOIyiYsZkiTE-dJxU0oEJ8,13599
2
- pulumi_digitalocean/_enums.py,sha256=lqt4VRtPlHgoRGQ3i30H5jadSEmP8g0dmb7jAiWQeWc,9798
3
- pulumi_digitalocean/_inputs.py,sha256=dEWDJjNIh84rakZFZNNexitQ8lcbUSLiWLrTgGafVBA,662972
4
- pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
- pulumi_digitalocean/app.py,sha256=Vj61udZzXSkXqRyRD-PgZDf8IcLJ1MgdULr9RpRwP8A,25027
6
- pulumi_digitalocean/cdn.py,sha256=W6Z1FGCXgpmDZkUcpL5OVF15zV-143HhgMZGrqHTsnc,22561
7
- pulumi_digitalocean/certificate.py,sha256=AdXJSdkFO510dE6s8Bh2BesH_nUXpIdE08mXjG-Qu08,29391
8
- pulumi_digitalocean/container_registry.py,sha256=KZu3IVGzEv6EwfIeqaX6QnIMyuUTenXS2sGoyK7nq94,17405
9
- pulumi_digitalocean/container_registry_docker_credentials.py,sha256=45Nv7CE2TcGOar4IOmbgP1pcAlZnQD-mh9kBrFW4Fbg,17981
10
- pulumi_digitalocean/custom_image.py,sha256=yOpO4QZ3-9fahe88mnidS1jcRLBTDrE6aVR-Uwlx-sM,28692
11
- pulumi_digitalocean/database_cluster.py,sha256=lMTpQb-CShD2KbvMLxjyFlsK9Kv-TPlIF1ukleacbtc,67027
12
- pulumi_digitalocean/database_connection_pool.py,sha256=ITwiJ_tTlxDPr9KLOKG5_ZeowJEGtRl3dsjJx3-CSYQ,26505
13
- pulumi_digitalocean/database_db.py,sha256=sKkOPs_ijfUcM6G6y8ViLrc0QHf4jSvxiZEZ2d9OG-8,9942
14
- pulumi_digitalocean/database_firewall.py,sha256=IsSC68fyOUsnVMg1MsL75YDrpCfY1nqtzPXLdDhKF9k,15706
15
- pulumi_digitalocean/database_kafka_config.py,sha256=5ERAb_LK2jpm99D-IFVVuMvHxO6fnmTcqmXGUmpisoE,62399
16
- pulumi_digitalocean/database_kafka_topic.py,sha256=ia0irmezMF4eteACbdWOsIwtgarbSWpVDrrdSVo6xyo,22660
17
- pulumi_digitalocean/database_mongodb_config.py,sha256=cPxDtzu9sicOUdWjzxc5Fb4Ku_196IK9IDnyhQJtB4Y,33622
18
- pulumi_digitalocean/database_mysql_config.py,sha256=Jb7_Eh2r0LNWawlnKHjsBi-cE5M0KxXWQJ5dLlt8miM,85776
19
- pulumi_digitalocean/database_opensearch_config.py,sha256=P_ng7Ta8s7mTo3mX-AFj8LK60SimOqTiqRGhJCHUZEY,137999
20
- pulumi_digitalocean/database_postgresql_config.py,sha256=eaYH7xgL8Soq7cfjMCio7oARWy4exIaTXNv7RQc_Egc,167645
21
- pulumi_digitalocean/database_redis_config.py,sha256=SXTxAb4AvaLDdjBpit6_i1NXWm5CCCnueewYugGXNVg,41286
22
- pulumi_digitalocean/database_replica.py,sha256=eYLw4JrBxhywYJnjYdMHpTDe1RlFzN1bnohU_H-8Q50,33129
23
- pulumi_digitalocean/database_user.py,sha256=8gNHp5bdTqjOxXE6-WesUK6ffH28b0QCp-nVW3aau1k,25625
24
- pulumi_digitalocean/dns_record.py,sha256=i7jhzyk1FoBA5_tSAtDVfaLiQIrx_5JvnOBe1-V7DIY,28601
25
- pulumi_digitalocean/domain.py,sha256=C_oEakxEKIU8CR7_M9MH37NG5-avEjm4NSrDfdlU3nw,11102
26
- pulumi_digitalocean/droplet.py,sha256=6giqoy1hpV8sWYcdZ03m4N4n1obg7PamkejL71595Jc,76180
27
- pulumi_digitalocean/droplet_autoscale.py,sha256=qhY04wJn4qKkFOJxEk02H3Ln1zpQxy1Yvt5F4cMkrC4,21588
28
- pulumi_digitalocean/droplet_snapshot.py,sha256=tS2XUsMm4swiHkdCCE-H-zfcnKKxEQzKIDyNrG6mnFE,14939
29
- pulumi_digitalocean/firewall.py,sha256=MNJzsUjjCQyXRHKlV3RJCm85Lv6Z2PmPNUznXriPGws,28313
30
- pulumi_digitalocean/floating_ip.py,sha256=k1lGkMvY29JlW1nAn3U9QKhZVwlZI108LS_G-I5KWHM,13608
31
- pulumi_digitalocean/floating_ip_assignment.py,sha256=iLXWNaMck31a4RqSoTeJqtvU2ehv7QEmuw6O92H1KrA,10967
32
- pulumi_digitalocean/get_account.py,sha256=eWNvJWQyp09MAg8C_WohdVjcndV1F43eAV07FsgBd9k,6931
33
- pulumi_digitalocean/get_app.py,sha256=9wUMm3MBwmvpLlcrjgS6x8tu4sZCQvxJDwSAOJpDn00,10194
34
- pulumi_digitalocean/get_certificate.py,sha256=i-shN_vysw9VelDorbYa0ZU1Zjk6Vmar1i-0mI1s3gA,7402
35
- pulumi_digitalocean/get_container_registry.py,sha256=aL3-79goOo7V2NgWtgbH6sE6rQWuY6MwT3nkCJUrMDg,8242
36
- pulumi_digitalocean/get_database_ca.py,sha256=YxAPKQh2NuOhEEdMLP3wfqN2LSMsaHMamN97rHPri18,4404
37
- pulumi_digitalocean/get_database_cluster.py,sha256=Ktd-jBpCPQV4xyJ_P4Xj8ZBCGlY3Mg6Ak6UyKIxWbHc,17822
38
- pulumi_digitalocean/get_database_connection_pool.py,sha256=9eI9vX6VpTfS_jYUv5Icg0R_XzMQ0XJAhClWGvfiPSQ,10323
39
- pulumi_digitalocean/get_database_replica.py,sha256=ak2oQqnSG-wLnyUJk8QUDHfRTfEU-y2S0Op6mkpwisQ,12160
40
- pulumi_digitalocean/get_database_user.py,sha256=a84subXsDnADoeBuGY1AiJiZ1_3oOTlk10AVYt53cKI,8291
41
- pulumi_digitalocean/get_domain.py,sha256=J8cUTjZcWHjU5prGLFlIIPEtdWSu9dqiYZu_77iy4kU,5771
42
- pulumi_digitalocean/get_domains.py,sha256=8efRQANNKQONJUEOJIqUKd_PopfiY1NL8Yi6WH5s9s4,6890
43
- pulumi_digitalocean/get_droplet.py,sha256=Kmf15nUIlbSCQnb_6h0sMCodfJyW7bfqRu-vD_CnLwY,19515
44
- pulumi_digitalocean/get_droplet_autoscale.py,sha256=_qlqCfOKQEK40D-14PlJdwUlS5tU942npK8sTf44qjU,7755
45
- pulumi_digitalocean/get_droplet_snapshot.py,sha256=mkrNa0ZMWXKWRmNcd4HT7Zk2iLPHVsUxrK7nPogNquA,11703
46
- pulumi_digitalocean/get_droplets.py,sha256=U-iCiC4_E0ehLDsNgEXlrgr7ESgxOf0NLAe8cd4rpCw,8981
47
- pulumi_digitalocean/get_firewall.py,sha256=0UTVRSAjqLHtGfk-dOhTwWVYoy9nEukOtr4sS8-fiWo,10479
48
- pulumi_digitalocean/get_floating_ip.py,sha256=lX8WO2gPXLz1cNi4kbYvxg7sTnq3sxgNEzLJUAYabCc,6724
49
- pulumi_digitalocean/get_image.py,sha256=WCpCXCvYz4SVxc-7Wx1O1M6Y5qTzQynN7Z0LiG-OwgA,14009
50
- pulumi_digitalocean/get_images.py,sha256=jkWYcSiqnHK9LN1gVErEoYgYSEeGLw5nB0bycg01ZaM,7836
51
- pulumi_digitalocean/get_kubernetes_cluster.py,sha256=mvaDzQWDuGj2a8gXs2JncopW40rtRq5lrSYDKpJmI8Y,19617
52
- pulumi_digitalocean/get_kubernetes_versions.py,sha256=UKgxMiEc-BnOoQ_H8amlUunRclIV4Kvtmbz1ebqeO6Y,7823
53
- pulumi_digitalocean/get_load_balancer.py,sha256=Ix3tKK9l2rptFhcgyQUGmrs52kn_sQNdQiANDK0dCy4,19224
54
- pulumi_digitalocean/get_partner_attachment.py,sha256=ZDawF2-9nsN3OyV4x0BMBgqsxwsYqqLmGbo7UIe-mKw,7272
55
- pulumi_digitalocean/get_project.py,sha256=6oPHX1x1mOabfMX4lPETTbCVWH_iTvb91TUFkCuHqzY,9354
56
- pulumi_digitalocean/get_projects.py,sha256=8cgH0wxEATLV-TroHAPzzaHFAVvesYc5cBPhRCvZlkw,7756
57
- pulumi_digitalocean/get_record.py,sha256=Ualyt6ENvkhE3yZY9n9PPn_rW74QA6XzpLjYlbsLhO0,9124
58
- pulumi_digitalocean/get_records.py,sha256=mR-tzaP3sgYegc8RNXscdZAO7ydz6qyg7AIpyUhFJgU,7070
59
- pulumi_digitalocean/get_region.py,sha256=35Y5CIByzqFCJZV7L3KKCMuQeoURlAtKTIkwhlbTpJ0,5981
60
- pulumi_digitalocean/get_regions.py,sha256=xOCZTH8VLkFWRTpXseeSmcBxajEADFB5SmJ0HphIptE,7517
61
- pulumi_digitalocean/get_reserved_ip.py,sha256=vBgi0B2pVdkYCa2yPuHuyOuDDu_cJMdg8oZNlOrV0dU,5498
62
- pulumi_digitalocean/get_reserved_ipv6.py,sha256=qCMDdUZIou1leg_79rN44hCMBcaK5NoF4P62nNGQ8-E,5317
63
- pulumi_digitalocean/get_sizes.py,sha256=C5zDSUTAdp6dG2krQQWMS50BKyv5fYEOJRsyoIp3bgU,5239
64
- pulumi_digitalocean/get_spaces_bucket.py,sha256=jcPRlN_DE6VxxlG0k4GEwjkeXSguZZUh6_HDFMFy2fI,6789
65
- pulumi_digitalocean/get_spaces_bucket_object.py,sha256=NfVTy1PIjVXgRf4lSLTA8jPBCPtE_sc3tKjEX9pReNI,17516
66
- pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=UNibTVrp32jAHT4zAd90WGIA58Cij-KJBCUAQSN2ZD4,10136
67
- pulumi_digitalocean/get_spaces_buckets.py,sha256=8rk_VtcEYLYX3mxnKsYS86pROHp8vOvg0ZlIBVMDB_E,7423
68
- pulumi_digitalocean/get_spaces_key.py,sha256=J5rclj6Oi_ZKc1_dPunVUZt_-sWJfneZk0zP4cpBy8Q,5378
69
- pulumi_digitalocean/get_ssh_key.py,sha256=yMbWnRd697Zarf8fhd_sLA1FZKvg2V0-GEu2b6xRB2o,5617
70
- pulumi_digitalocean/get_ssh_keys.py,sha256=Z6JC0a9FRnY870Hqek4QNvOSPhO26xS6e0FOyQbzM9c,6902
71
- pulumi_digitalocean/get_tag.py,sha256=5PfrquC6npffC7KxHTt3dD4fe95vRx-J5yEd7Y80rA0,8409
72
- pulumi_digitalocean/get_tags.py,sha256=6SwyOf6z7rhbBs_hdlz0joP-p1xZZdplaXwUxfKo--A,5678
73
- pulumi_digitalocean/get_volume.py,sha256=9liGkSsGd-jz9jjrhYQPFZnjTo0Y86DZTgan4HnWcTk,10375
74
- pulumi_digitalocean/get_volume_snapshot.py,sha256=06hMblHirXc9PnB0Re3IWch-ky73C4lflSSLuC5w3II,12120
75
- pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQw,8934
76
- pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
77
- pulumi_digitalocean/kubernetes_cluster.py,sha256=k41Lh-Gql8z2yN9ZNJpEfmByQR6cTyPoVWWltHUjseM,69077
78
- pulumi_digitalocean/kubernetes_node_pool.py,sha256=HWFfMWE9t_yvaZHMK7FNztowlW4QE3MVHitGMDB8O5U,38974
79
- pulumi_digitalocean/load_balancer.py,sha256=E8XQ7DRVnyoTwlYpZey8027ckzROLdslvBEJ1dx3F6s,82565
80
- pulumi_digitalocean/monitor_alert.py,sha256=71BhDCEDVB9tHwvDjboHBt-k6rDWEtr-UrLjdk6dlj4,38173
81
- pulumi_digitalocean/outputs.py,sha256=YqOzbhye25k5mhZxkcSrq2yOT-d5lF65S7ESbzqz-YM,742903
82
- pulumi_digitalocean/partner_attachment.py,sha256=QskuLWOHGgLU53e4JYjhcvMsPu6xtfXeLp-4t-QHz3Q,18621
83
- pulumi_digitalocean/project.py,sha256=kfEsgNlPy0v-suQJUZmvV2NlZPvE4WnM_7ZK-zKL78M,25646
84
- pulumi_digitalocean/project_resources.py,sha256=ij4fPK_Tx5JK-TWUXCgiqq5SIOiWuedlgzhTqY7D4WM,10713
85
- pulumi_digitalocean/provider.py,sha256=ZKoIGmfkmuT00_iS1OSIB73eXlTzAmnyTiC79O5q6qk,15261
86
- pulumi_digitalocean/pulumi-plugin.json,sha256=YNaWmpmL31uIqIgINXxdGxevpx3V2QmmzOHqto1UrS0,89
87
- pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
- pulumi_digitalocean/reserved_ip.py,sha256=LcgL0-1BZxanzFeOtwoEQ1jyX69njSTyCSY8yoUI63U,13290
89
- pulumi_digitalocean/reserved_ip_assignment.py,sha256=dHOnvpPq5CRDUMg91TP20H48BtGxDHGNGW1T-VpsB-Q,10625
90
- pulumi_digitalocean/reserved_ipv6.py,sha256=xxByTq1Iu0NGKCVwY9OUx2GwYqcAGXDd7-PDKOfaWW4,11051
91
- pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=ZdhoKpiiiFbCys8t2NDYBJon_5TpLUrSkysPEwRJT3Q,9129
92
- pulumi_digitalocean/spaces_bucket.py,sha256=AKqJz-WdWZ51tMMjFAbBBM6l-EFrB_ECrPJ25RKHoAM,31124
93
- pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=wqFeGgUnnKDbkAnjCB-J-X7vn8-iPbVks5yh2l6WZOE,13921
94
- pulumi_digitalocean/spaces_bucket_object.py,sha256=eTz1CeAj-tmumiNCVZDrH0xRj2peaajB9pQwh3avkmg,55107
95
- pulumi_digitalocean/spaces_bucket_policy.py,sha256=ZZXfnrXVTA3B4tOqJuFIJ_1JhkdLvJO5PvM2cjx6nWY,12895
96
- pulumi_digitalocean/spaces_key.py,sha256=jYge18vs7hG8lQWsjVbpv37ONlqXUXorPsArhFsVt6g,14898
97
- pulumi_digitalocean/ssh_key.py,sha256=Nvn3cjJukaxbQR2dWQ-dQxKCJOAozpY5otc8jlRm5B4,11208
98
- pulumi_digitalocean/tag.py,sha256=Tn4J515QBupfPYuc3ucIrXLQLiEDtUdj23Bz1dcHH30,15148
99
- pulumi_digitalocean/uptime_alert.py,sha256=yJNjg8tNmiBmxF7dROmIr9F2OkFD9cO8sdpCFAcN0Yo,21637
100
- pulumi_digitalocean/uptime_check.py,sha256=Bj6kOBXNPzAMVh9MNZxfGJ5eeBtgFRJhVH_TTZH9bfw,15305
101
- pulumi_digitalocean/volume.py,sha256=mWRCT6NF5l8_AEKIYNbVbb4Tt-1uxx4eUnJHexbm1io,34729
102
- pulumi_digitalocean/volume_attachment.py,sha256=jiaWn4Kcq1q9EViFqXvl4bk89e0dfOizfV3jkY599DM,10209
103
- pulumi_digitalocean/volume_snapshot.py,sha256=39WwqHHrFy5KRptj46o4Wzngw_NcPKf04CZuAWn2nIs,16670
104
- pulumi_digitalocean/vpc.py,sha256=eEdKy7thRci2l9WY09M_YXfpY_JAVou7QzjFiL3_pxo,19827
105
- pulumi_digitalocean/vpc_peering.py,sha256=3ccI_cKrRvi8LclHUot8RTHmeR0SqBwJ-lWhPdm5hSA,14761
106
- pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
107
- pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
108
- pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
109
- pulumi_digitalocean-4.43.0a1745559798.dist-info/METADATA,sha256=h4ImHEeiW1CF5iy9i-RPVJCeLBnooUjgyAYT6I1Tpbw,3849
110
- pulumi_digitalocean-4.43.0a1745559798.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
111
- pulumi_digitalocean-4.43.0a1745559798.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
112
- pulumi_digitalocean-4.43.0a1745559798.dist-info/RECORD,,