pulumi-digitalocean 4.52.0a1755711873__py3-none-any.whl → 4.53.0__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.
- pulumi_digitalocean/__init__.py +9 -0
- pulumi_digitalocean/_inputs.py +171 -0
- pulumi_digitalocean/database_kafka_schema_registry.py +360 -0
- pulumi_digitalocean/database_valkey_config.py +14 -42
- pulumi_digitalocean/get_kubernetes_cluster.py +33 -3
- pulumi_digitalocean/kubernetes_cluster.py +94 -0
- pulumi_digitalocean/outputs.py +124 -0
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- {pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/METADATA +1 -1
- {pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/RECORD +12 -11
- {pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/WHEEL +0 -0
- {pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/top_level.txt +0 -0
pulumi_digitalocean/outputs.py
CHANGED
|
@@ -50,6 +50,7 @@ __all__ = [
|
|
|
50
50
|
'AppSpecIngressRuleCors',
|
|
51
51
|
'AppSpecIngressRuleCorsAllowOrigins',
|
|
52
52
|
'AppSpecIngressRuleMatch',
|
|
53
|
+
'AppSpecIngressRuleMatchAuthority',
|
|
53
54
|
'AppSpecIngressRuleMatchPath',
|
|
54
55
|
'AppSpecIngressRuleRedirect',
|
|
55
56
|
'AppSpecJob',
|
|
@@ -187,6 +188,8 @@ __all__ = [
|
|
|
187
188
|
'GenaiOpenaiApiKeyModel',
|
|
188
189
|
'GenaiOpenaiApiKeyModelAgreement',
|
|
189
190
|
'GenaiOpenaiApiKeyModelVersion',
|
|
191
|
+
'KubernetesClusterAmdGpuDeviceMetricsExporterPlugin',
|
|
192
|
+
'KubernetesClusterAmdGpuDevicePlugin',
|
|
190
193
|
'KubernetesClusterClusterAutoscalerConfiguration',
|
|
191
194
|
'KubernetesClusterControlPlaneFirewall',
|
|
192
195
|
'KubernetesClusterKubeConfig',
|
|
@@ -252,6 +255,7 @@ __all__ = [
|
|
|
252
255
|
'GetAppSpecIngressRuleCorsResult',
|
|
253
256
|
'GetAppSpecIngressRuleCorsAllowOriginsResult',
|
|
254
257
|
'GetAppSpecIngressRuleMatchResult',
|
|
258
|
+
'GetAppSpecIngressRuleMatchAuthorityResult',
|
|
255
259
|
'GetAppSpecIngressRuleMatchPathResult',
|
|
256
260
|
'GetAppSpecIngressRuleRedirectResult',
|
|
257
261
|
'GetAppSpecJobResult',
|
|
@@ -480,6 +484,8 @@ __all__ = [
|
|
|
480
484
|
'GetImagesFilterResult',
|
|
481
485
|
'GetImagesImageResult',
|
|
482
486
|
'GetImagesSortResult',
|
|
487
|
+
'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginResult',
|
|
488
|
+
'GetKubernetesClusterAmdGpuDevicePluginResult',
|
|
483
489
|
'GetKubernetesClusterClusterAutoscalerConfigurationResult',
|
|
484
490
|
'GetKubernetesClusterControlPlaneFirewallResult',
|
|
485
491
|
'GetKubernetesClusterKubeConfigResult',
|
|
@@ -2530,13 +2536,25 @@ class AppSpecIngressRuleCorsAllowOrigins(dict):
|
|
|
2530
2536
|
@pulumi.output_type
|
|
2531
2537
|
class AppSpecIngressRuleMatch(dict):
|
|
2532
2538
|
def __init__(__self__, *,
|
|
2539
|
+
authority: Optional['outputs.AppSpecIngressRuleMatchAuthority'] = None,
|
|
2533
2540
|
path: Optional['outputs.AppSpecIngressRuleMatchPath'] = None):
|
|
2534
2541
|
"""
|
|
2542
|
+
:param 'AppSpecIngressRuleMatchAuthorityArgs' authority: The authority (domain) to match on.
|
|
2535
2543
|
:param 'AppSpecIngressRuleMatchPathArgs' path: The path to match on.
|
|
2536
2544
|
"""
|
|
2545
|
+
if authority is not None:
|
|
2546
|
+
pulumi.set(__self__, "authority", authority)
|
|
2537
2547
|
if path is not None:
|
|
2538
2548
|
pulumi.set(__self__, "path", path)
|
|
2539
2549
|
|
|
2550
|
+
@_builtins.property
|
|
2551
|
+
@pulumi.getter
|
|
2552
|
+
def authority(self) -> Optional['outputs.AppSpecIngressRuleMatchAuthority']:
|
|
2553
|
+
"""
|
|
2554
|
+
The authority (domain) to match on.
|
|
2555
|
+
"""
|
|
2556
|
+
return pulumi.get(self, "authority")
|
|
2557
|
+
|
|
2540
2558
|
@_builtins.property
|
|
2541
2559
|
@pulumi.getter
|
|
2542
2560
|
def path(self) -> Optional['outputs.AppSpecIngressRuleMatchPath']:
|
|
@@ -2546,6 +2564,25 @@ class AppSpecIngressRuleMatch(dict):
|
|
|
2546
2564
|
return pulumi.get(self, "path")
|
|
2547
2565
|
|
|
2548
2566
|
|
|
2567
|
+
@pulumi.output_type
|
|
2568
|
+
class AppSpecIngressRuleMatchAuthority(dict):
|
|
2569
|
+
def __init__(__self__, *,
|
|
2570
|
+
exact: Optional[_builtins.str] = None):
|
|
2571
|
+
"""
|
|
2572
|
+
:param _builtins.str exact: Exact match.
|
|
2573
|
+
"""
|
|
2574
|
+
if exact is not None:
|
|
2575
|
+
pulumi.set(__self__, "exact", exact)
|
|
2576
|
+
|
|
2577
|
+
@_builtins.property
|
|
2578
|
+
@pulumi.getter
|
|
2579
|
+
def exact(self) -> Optional[_builtins.str]:
|
|
2580
|
+
"""
|
|
2581
|
+
Exact match.
|
|
2582
|
+
"""
|
|
2583
|
+
return pulumi.get(self, "exact")
|
|
2584
|
+
|
|
2585
|
+
|
|
2549
2586
|
@pulumi.output_type
|
|
2550
2587
|
class AppSpecIngressRuleMatchPath(dict):
|
|
2551
2588
|
def __init__(__self__, *,
|
|
@@ -13613,6 +13650,44 @@ class GenaiOpenaiApiKeyModelVersion(dict):
|
|
|
13613
13650
|
return pulumi.get(self, "patch")
|
|
13614
13651
|
|
|
13615
13652
|
|
|
13653
|
+
@pulumi.output_type
|
|
13654
|
+
class KubernetesClusterAmdGpuDeviceMetricsExporterPlugin(dict):
|
|
13655
|
+
def __init__(__self__, *,
|
|
13656
|
+
enabled: _builtins.bool):
|
|
13657
|
+
"""
|
|
13658
|
+
:param _builtins.bool enabled: Boolean flag whether the component is enabled or not.
|
|
13659
|
+
"""
|
|
13660
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
13661
|
+
|
|
13662
|
+
@_builtins.property
|
|
13663
|
+
@pulumi.getter
|
|
13664
|
+
def enabled(self) -> _builtins.bool:
|
|
13665
|
+
"""
|
|
13666
|
+
Boolean flag whether the component is enabled or not.
|
|
13667
|
+
"""
|
|
13668
|
+
return pulumi.get(self, "enabled")
|
|
13669
|
+
|
|
13670
|
+
|
|
13671
|
+
@pulumi.output_type
|
|
13672
|
+
class KubernetesClusterAmdGpuDevicePlugin(dict):
|
|
13673
|
+
def __init__(__self__, *,
|
|
13674
|
+
enabled: _builtins.bool):
|
|
13675
|
+
"""
|
|
13676
|
+
:param _builtins.bool enabled: Boolean flag whether the component should be enabled or not.
|
|
13677
|
+
`amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
|
|
13678
|
+
"""
|
|
13679
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
13680
|
+
|
|
13681
|
+
@_builtins.property
|
|
13682
|
+
@pulumi.getter
|
|
13683
|
+
def enabled(self) -> _builtins.bool:
|
|
13684
|
+
"""
|
|
13685
|
+
Boolean flag whether the component should be enabled or not.
|
|
13686
|
+
`amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
|
|
13687
|
+
"""
|
|
13688
|
+
return pulumi.get(self, "enabled")
|
|
13689
|
+
|
|
13690
|
+
|
|
13616
13691
|
@pulumi.output_type
|
|
13617
13692
|
class KubernetesClusterClusterAutoscalerConfiguration(dict):
|
|
13618
13693
|
@staticmethod
|
|
@@ -17229,12 +17304,19 @@ class GetAppSpecIngressRuleCorsAllowOriginsResult(dict):
|
|
|
17229
17304
|
@pulumi.output_type
|
|
17230
17305
|
class GetAppSpecIngressRuleMatchResult(dict):
|
|
17231
17306
|
def __init__(__self__, *,
|
|
17307
|
+
authority: 'outputs.GetAppSpecIngressRuleMatchAuthorityResult',
|
|
17232
17308
|
path: 'outputs.GetAppSpecIngressRuleMatchPathResult'):
|
|
17233
17309
|
"""
|
|
17234
17310
|
:param 'GetAppSpecIngressRuleMatchPathArgs' path: Paths must start with `/` and must be unique within the app.
|
|
17235
17311
|
"""
|
|
17312
|
+
pulumi.set(__self__, "authority", authority)
|
|
17236
17313
|
pulumi.set(__self__, "path", path)
|
|
17237
17314
|
|
|
17315
|
+
@_builtins.property
|
|
17316
|
+
@pulumi.getter
|
|
17317
|
+
def authority(self) -> 'outputs.GetAppSpecIngressRuleMatchAuthorityResult':
|
|
17318
|
+
return pulumi.get(self, "authority")
|
|
17319
|
+
|
|
17238
17320
|
@_builtins.property
|
|
17239
17321
|
@pulumi.getter
|
|
17240
17322
|
def path(self) -> 'outputs.GetAppSpecIngressRuleMatchPathResult':
|
|
@@ -17244,6 +17326,24 @@ class GetAppSpecIngressRuleMatchResult(dict):
|
|
|
17244
17326
|
return pulumi.get(self, "path")
|
|
17245
17327
|
|
|
17246
17328
|
|
|
17329
|
+
@pulumi.output_type
|
|
17330
|
+
class GetAppSpecIngressRuleMatchAuthorityResult(dict):
|
|
17331
|
+
def __init__(__self__, *,
|
|
17332
|
+
exact: _builtins.str):
|
|
17333
|
+
"""
|
|
17334
|
+
:param _builtins.str exact: The `Access-Control-Allow-Origin` header will be set to the client's origin only if the client's origin exactly matches the value you provide.
|
|
17335
|
+
"""
|
|
17336
|
+
pulumi.set(__self__, "exact", exact)
|
|
17337
|
+
|
|
17338
|
+
@_builtins.property
|
|
17339
|
+
@pulumi.getter
|
|
17340
|
+
def exact(self) -> _builtins.str:
|
|
17341
|
+
"""
|
|
17342
|
+
The `Access-Control-Allow-Origin` header will be set to the client's origin only if the client's origin exactly matches the value you provide.
|
|
17343
|
+
"""
|
|
17344
|
+
return pulumi.get(self, "exact")
|
|
17345
|
+
|
|
17346
|
+
|
|
17247
17347
|
@pulumi.output_type
|
|
17248
17348
|
class GetAppSpecIngressRuleMatchPathResult(dict):
|
|
17249
17349
|
def __init__(__self__, *,
|
|
@@ -34145,6 +34245,30 @@ class GetImagesSortResult(dict):
|
|
|
34145
34245
|
return pulumi.get(self, "direction")
|
|
34146
34246
|
|
|
34147
34247
|
|
|
34248
|
+
@pulumi.output_type
|
|
34249
|
+
class GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginResult(dict):
|
|
34250
|
+
def __init__(__self__, *,
|
|
34251
|
+
enabled: _builtins.bool):
|
|
34252
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
34253
|
+
|
|
34254
|
+
@_builtins.property
|
|
34255
|
+
@pulumi.getter
|
|
34256
|
+
def enabled(self) -> _builtins.bool:
|
|
34257
|
+
return pulumi.get(self, "enabled")
|
|
34258
|
+
|
|
34259
|
+
|
|
34260
|
+
@pulumi.output_type
|
|
34261
|
+
class GetKubernetesClusterAmdGpuDevicePluginResult(dict):
|
|
34262
|
+
def __init__(__self__, *,
|
|
34263
|
+
enabled: _builtins.bool):
|
|
34264
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
34265
|
+
|
|
34266
|
+
@_builtins.property
|
|
34267
|
+
@pulumi.getter
|
|
34268
|
+
def enabled(self) -> _builtins.bool:
|
|
34269
|
+
return pulumi.get(self, "enabled")
|
|
34270
|
+
|
|
34271
|
+
|
|
34148
34272
|
@pulumi.output_type
|
|
34149
34273
|
class GetKubernetesClusterClusterAutoscalerConfigurationResult(dict):
|
|
34150
34274
|
def __init__(__self__, *,
|
{pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pulumi_digitalocean/__init__.py,sha256
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=9IS_tGQEf-ejzlBTkT6v2l4C0IDgUNoq145khuzjdIM,17079
|
|
2
2
|
pulumi_digitalocean/_enums.py,sha256=BjPVHb6LBzb5rTS4gHQ4xcGbGDQyrw1B5GDlI4Yqdr8,10220
|
|
3
|
-
pulumi_digitalocean/_inputs.py,sha256=
|
|
3
|
+
pulumi_digitalocean/_inputs.py,sha256=9x11xBmJgaGDN6Aa20yDjEs1rgW62cIFLY3OF_MkZEc,1096376
|
|
4
4
|
pulumi_digitalocean/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
5
5
|
pulumi_digitalocean/app.py,sha256=RPhW_4KkuuIpsha0cg3MzkFPlkTvvE9b7NJi3EQvd8Q,28496
|
|
6
6
|
pulumi_digitalocean/cdn.py,sha256=vFT92zO_tpmpm1VDIA_7NJLVkxMl_MYZpmL79dkYNzU,22867
|
|
@@ -13,6 +13,7 @@ pulumi_digitalocean/database_connection_pool.py,sha256=qoGxJhzl_kWQ3f9pJtGlbskaP
|
|
|
13
13
|
pulumi_digitalocean/database_db.py,sha256=Cu7HFtbxW7cJACri3FlTzgncpPBoP1R63a8HbgIll-w,10076
|
|
14
14
|
pulumi_digitalocean/database_firewall.py,sha256=mG29TMfhXJEYnCV8E4dldCtfPtJ-p__na4SOsowIsvg,15838
|
|
15
15
|
pulumi_digitalocean/database_kafka_config.py,sha256=aVeIrYgzxlqjoGOFKC1AuW1V-3LkQYUvvJRUmhT5r8U,63255
|
|
16
|
+
pulumi_digitalocean/database_kafka_schema_registry.py,sha256=dsJg6VXWuDJXNhPdDC-9W8YvcAX9-hlzkU0kI2TH8RA,14753
|
|
16
17
|
pulumi_digitalocean/database_kafka_topic.py,sha256=MuuQXviGjG6UvnGd_ZtMkh_E1_6IIKHUYt9-sXt0Fqg,22955
|
|
17
18
|
pulumi_digitalocean/database_mongodb_config.py,sha256=YNRoBm3WwnMnFSS3PHPCghtd9r0F_lwbtcPBTso2MAc,33954
|
|
18
19
|
pulumi_digitalocean/database_mysql_config.py,sha256=lpXfSzrjB2tgw5_W0BFBxGZ-gZ8Fz8ri22F3BQsjFC4,87072
|
|
@@ -22,7 +23,7 @@ pulumi_digitalocean/database_postgresql_config.py,sha256=96-z7UpGLcInYAxM0BRu_eO
|
|
|
22
23
|
pulumi_digitalocean/database_redis_config.py,sha256=AtEvBM6aIbgjHPrdnpkzcP5P9DSMGTa3ULdI05oh_5o,42314
|
|
23
24
|
pulumi_digitalocean/database_replica.py,sha256=qkqzhiwKHCgv5ZQp-m8dmop8TRXYXCNz6l-CAnPaIUo,33732
|
|
24
25
|
pulumi_digitalocean/database_user.py,sha256=tuvzSzPMe1A2yxEQ8BTDIUHJ4QR4ALSBehko4Iabwxk,25945
|
|
25
|
-
pulumi_digitalocean/database_valkey_config.py,sha256=
|
|
26
|
+
pulumi_digitalocean/database_valkey_config.py,sha256=tOymIE07Uiyz0sAxR1A7koq4cX3GXNpyM-u26SEu0zI,45556
|
|
26
27
|
pulumi_digitalocean/dns_record.py,sha256=bmj63Cxou9YkKsukMUbJPwJusb5O1Yg4ovYviG7P6fo,29112
|
|
27
28
|
pulumi_digitalocean/domain.py,sha256=tRbBaWJiIFSEhKf-pEwu2astpKTb1uW91UsOnpHAClk,11282
|
|
28
29
|
pulumi_digitalocean/droplet.py,sha256=SR6Qxc4lrDN2UT1_dRjvOFYtc_S6OUdeH8PRsxLTjCU,77291
|
|
@@ -67,7 +68,7 @@ pulumi_digitalocean/get_genai_openai_api_key.py,sha256=OpLI3z_7mG54Yt8SucygzdGBU
|
|
|
67
68
|
pulumi_digitalocean/get_genai_openai_api_keys.py,sha256=8I0AOQ2CfMtfg1mEnuk1KawF3dvP0e7tjVrRs2n25Rg,5087
|
|
68
69
|
pulumi_digitalocean/get_image.py,sha256=8QJJ3ykhnOiFdrSkHhNKiYpvMODYgUufdgC3XXJ32tc,14184
|
|
69
70
|
pulumi_digitalocean/get_images.py,sha256=sBCiv9W9OTzFVeRO91Wwfc8BZR7R9gylUfj_QDlzshQ,7860
|
|
70
|
-
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=
|
|
71
|
+
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=oiLpRSo3mfRUrjpyplVYI20BSfJY1xHEnQZxXkG_-lk,22702
|
|
71
72
|
pulumi_digitalocean/get_kubernetes_versions.py,sha256=3P-wlq3dvRKJNZwJYB-6o7O9A4br4IUjdyJ0kpycA5A,7854
|
|
72
73
|
pulumi_digitalocean/get_load_balancer.py,sha256=XtnwIK6JwrSY5x5fC2mlyFRdD94yCQz7hDq-uNwC8s8,19517
|
|
73
74
|
pulumi_digitalocean/get_partner_attachment.py,sha256=gUh7Fy8_WddqpJCQbpFPl1mkvjnF70NR2O5bzUr1W9M,9245
|
|
@@ -95,16 +96,16 @@ pulumi_digitalocean/get_volume_snapshot.py,sha256=HbZ6K2OyIUf6Hnl2RSN4pxr66FmSwg
|
|
|
95
96
|
pulumi_digitalocean/get_vpc.py,sha256=iSDCKZjWUPdN2odd93R1yWk7aGHCWNHJUB07r0SFO-w,9017
|
|
96
97
|
pulumi_digitalocean/get_vpc_nat_gateway.py,sha256=YhF5s60l8jI5nDXJCJKc-f1yDZj4LTfO-7fJgngQZjk,9965
|
|
97
98
|
pulumi_digitalocean/get_vpc_peering.py,sha256=2zcp7P1RkDBtZpFpUgPviUC8cySLabN--KNMihi5vk8,8177
|
|
98
|
-
pulumi_digitalocean/kubernetes_cluster.py,sha256=
|
|
99
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=580UgYrpmopNxXIG1nWzAIAMrFjCGitEqAQ1W4v3ilY,80331
|
|
99
100
|
pulumi_digitalocean/kubernetes_node_pool.py,sha256=aSR04-U6WloxWTIjWB5oi0lgsexXMbaUml1yy-umUL0,39509
|
|
100
101
|
pulumi_digitalocean/load_balancer.py,sha256=aM43Sk1FHGbWeBivKKbIGlIbYnTYEjAcgKP4SJ6zfq0,85253
|
|
101
102
|
pulumi_digitalocean/monitor_alert.py,sha256=U5JWEsFkO7Ln7_ANqW3-qgg6DMhcz85qxTEIvxNgm64,38632
|
|
102
|
-
pulumi_digitalocean/outputs.py,sha256=
|
|
103
|
+
pulumi_digitalocean/outputs.py,sha256=R-nP6EVCY-CFDfWPXaPHFeaypji2Kt84bY5XOBlnIa4,1414969
|
|
103
104
|
pulumi_digitalocean/partner_attachment.py,sha256=87QyA1Utqqokna7LiHhxxSgypbuEiuU1UNTrP3iPOJU,24553
|
|
104
105
|
pulumi_digitalocean/project.py,sha256=790IbhJNTJUWzp8fqPFPufAgmhGJNRTM-XumHNv-tqc,26058
|
|
105
106
|
pulumi_digitalocean/project_resources.py,sha256=hrnjVNtTaentjMbhlmFivfY0bqGT8DgO5DnMSlQzY_M,10859
|
|
106
107
|
pulumi_digitalocean/provider.py,sha256=ughfy0OUJdK9ZupsUhb1NiZq18nzq3QxaI2QQ2Pcxhc,16389
|
|
107
|
-
pulumi_digitalocean/pulumi-plugin.json,sha256=
|
|
108
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=zA87d29mY205PxTyV--YE0IIT3BQdnq9eGjhRGMgfII,72
|
|
108
109
|
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
110
|
pulumi_digitalocean/reserved_ip.py,sha256=6nadG79sbi7OQfGGUXS14R1ShYI8jf82Z2O03pzhLTs,13495
|
|
110
111
|
pulumi_digitalocean/reserved_ip_assignment.py,sha256=bcJyGcJ4qVrsoq-02QXc8CbNzZbihsyejtTGqy2Oims,10779
|
|
@@ -129,7 +130,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=gbvtHjLtydRs5a637xVOSozuWPwLsrOvWDU29o
|
|
|
129
130
|
pulumi_digitalocean/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
130
131
|
pulumi_digitalocean/config/__init__.pyi,sha256=14znViTkWM8dAhziCo0xx03AsaWPEY9Lg_eVKOdZ6zs,1317
|
|
131
132
|
pulumi_digitalocean/config/vars.py,sha256=OaThQn6yyBN7URJkzZseWEqUCPW2nzsjERvHzyq0SS8,2595
|
|
132
|
-
pulumi_digitalocean-4.
|
|
133
|
-
pulumi_digitalocean-4.
|
|
134
|
-
pulumi_digitalocean-4.
|
|
135
|
-
pulumi_digitalocean-4.
|
|
133
|
+
pulumi_digitalocean-4.53.0.dist-info/METADATA,sha256=N-Zhz0BOqIrdTHWqQ6QOQ2gUQKhUSl3ezblAfOlr7ZE,3841
|
|
134
|
+
pulumi_digitalocean-4.53.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
135
|
+
pulumi_digitalocean-4.53.0.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
136
|
+
pulumi_digitalocean-4.53.0.dist-info/RECORD,,
|
{pulumi_digitalocean-4.52.0a1755711873.dist-info → pulumi_digitalocean-4.53.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|