pulumi-digitalocean 4.43.0a1745300666__py3-none-any.whl → 4.43.0a1745984328__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/load_balancer.py +47 -14
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- {pulumi_digitalocean-4.43.0a1745300666.dist-info → pulumi_digitalocean-4.43.0a1745984328.dist-info}/METADATA +1 -1
- {pulumi_digitalocean-4.43.0a1745300666.dist-info → pulumi_digitalocean-4.43.0a1745984328.dist-info}/RECORD +6 -6
- {pulumi_digitalocean-4.43.0a1745300666.dist-info → pulumi_digitalocean-4.43.0a1745984328.dist-info}/WHEEL +1 -1
- {pulumi_digitalocean-4.43.0a1745300666.dist-info → pulumi_digitalocean-4.43.0a1745984328.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
|
@@ -935,6 +959,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
935
959
|
size_unit: Optional[pulumi.Input[builtins.int]] = None,
|
|
936
960
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
937
961
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
962
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
938
963
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
939
964
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
|
|
940
965
|
__props__=None):
|
|
@@ -1005,7 +1030,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1005
1030
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
1006
1031
|
: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
1032
|
: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
1033
|
: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
1034
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
1011
1035
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -1016,8 +1040,8 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1016
1040
|
:param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
1017
1041
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
1018
1042
|
: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.
|
|
1043
|
+
: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
1044
|
: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
1045
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
1022
1046
|
"""
|
|
1023
1047
|
...
|
|
@@ -1108,6 +1132,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1108
1132
|
size_unit: Optional[pulumi.Input[builtins.int]] = None,
|
|
1109
1133
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
1110
1134
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1135
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
1111
1136
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1112
1137
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
|
|
1113
1138
|
__props__=None):
|
|
@@ -1141,6 +1166,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1141
1166
|
__props__.__dict__["size_unit"] = size_unit
|
|
1142
1167
|
__props__.__dict__["sticky_sessions"] = sticky_sessions
|
|
1143
1168
|
__props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
|
|
1169
|
+
__props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
|
|
1144
1170
|
__props__.__dict__["type"] = type
|
|
1145
1171
|
__props__.__dict__["vpc_uuid"] = vpc_uuid
|
|
1146
1172
|
__props__.__dict__["ip"] = None
|
|
@@ -1183,6 +1209,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1183
1209
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
1184
1210
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
1185
1211
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1212
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
1186
1213
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1187
1214
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None) -> 'LoadBalancer':
|
|
1188
1215
|
"""
|
|
@@ -1214,7 +1241,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1214
1241
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
1215
1242
|
: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
1243
|
: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
1244
|
: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
1245
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
1220
1246
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -1225,8 +1251,8 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1225
1251
|
:param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
1226
1252
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
1227
1253
|
: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.
|
|
1254
|
+
: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
1255
|
: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
1256
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
1231
1257
|
"""
|
|
1232
1258
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -1259,6 +1285,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1259
1285
|
__props__.__dict__["status"] = status
|
|
1260
1286
|
__props__.__dict__["sticky_sessions"] = sticky_sessions
|
|
1261
1287
|
__props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
|
|
1288
|
+
__props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
|
|
1262
1289
|
__props__.__dict__["type"] = type
|
|
1263
1290
|
__props__.__dict__["vpc_uuid"] = vpc_uuid
|
|
1264
1291
|
return LoadBalancer(resource_name, opts=opts, __props__=__props__)
|
|
@@ -1407,7 +1434,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1407
1434
|
def network_stack(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1408
1435
|
"""
|
|
1409
1436
|
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
1437
|
"""
|
|
1412
1438
|
return pulumi.get(self, "network_stack")
|
|
1413
1439
|
|
|
@@ -1475,12 +1501,19 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1475
1501
|
"""
|
|
1476
1502
|
return pulumi.get(self, "target_load_balancer_ids")
|
|
1477
1503
|
|
|
1504
|
+
@property
|
|
1505
|
+
@pulumi.getter(name="tlsCipherPolicy")
|
|
1506
|
+
def tls_cipher_policy(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1507
|
+
"""
|
|
1508
|
+
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`.
|
|
1509
|
+
"""
|
|
1510
|
+
return pulumi.get(self, "tls_cipher_policy")
|
|
1511
|
+
|
|
1478
1512
|
@property
|
|
1479
1513
|
@pulumi.getter
|
|
1480
1514
|
def type(self) -> pulumi.Output[builtins.str]:
|
|
1481
1515
|
"""
|
|
1482
1516
|
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
1517
|
"""
|
|
1485
1518
|
return pulumi.get(self, "type")
|
|
1486
1519
|
|
|
@@ -76,14 +76,14 @@ pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQ
|
|
|
76
76
|
pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
|
|
77
77
|
pulumi_digitalocean/kubernetes_cluster.py,sha256=k41Lh-Gql8z2yN9ZNJpEfmByQR6cTyPoVWWltHUjseM,69077
|
|
78
78
|
pulumi_digitalocean/kubernetes_node_pool.py,sha256=HWFfMWE9t_yvaZHMK7FNztowlW4QE3MVHitGMDB8O5U,38974
|
|
79
|
-
pulumi_digitalocean/load_balancer.py,sha256=
|
|
79
|
+
pulumi_digitalocean/load_balancer.py,sha256=dGfpH3XyvZ7yumTpeWztfzfCL61VFE2wJILESq0JliE,84083
|
|
80
80
|
pulumi_digitalocean/monitor_alert.py,sha256=71BhDCEDVB9tHwvDjboHBt-k6rDWEtr-UrLjdk6dlj4,38173
|
|
81
81
|
pulumi_digitalocean/outputs.py,sha256=YqOzbhye25k5mhZxkcSrq2yOT-d5lF65S7ESbzqz-YM,742903
|
|
82
82
|
pulumi_digitalocean/partner_attachment.py,sha256=QskuLWOHGgLU53e4JYjhcvMsPu6xtfXeLp-4t-QHz3Q,18621
|
|
83
83
|
pulumi_digitalocean/project.py,sha256=kfEsgNlPy0v-suQJUZmvV2NlZPvE4WnM_7ZK-zKL78M,25646
|
|
84
84
|
pulumi_digitalocean/project_resources.py,sha256=ij4fPK_Tx5JK-TWUXCgiqq5SIOiWuedlgzhTqY7D4WM,10713
|
|
85
85
|
pulumi_digitalocean/provider.py,sha256=ZKoIGmfkmuT00_iS1OSIB73eXlTzAmnyTiC79O5q6qk,15261
|
|
86
|
-
pulumi_digitalocean/pulumi-plugin.json,sha256=
|
|
86
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=w5BNfkn1EMX5zMJ_qITbjyhg4qa7o9gPXjFE9FynDuE,89
|
|
87
87
|
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
88
|
pulumi_digitalocean/reserved_ip.py,sha256=LcgL0-1BZxanzFeOtwoEQ1jyX69njSTyCSY8yoUI63U,13290
|
|
89
89
|
pulumi_digitalocean/reserved_ip_assignment.py,sha256=dHOnvpPq5CRDUMg91TP20H48BtGxDHGNGW1T-VpsB-Q,10625
|
|
@@ -106,7 +106,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=3ccI_cKrRvi8LclHUot8RTHmeR0SqBwJ-lWhPd
|
|
|
106
106
|
pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
107
107
|
pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
|
|
108
108
|
pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
|
|
109
|
-
pulumi_digitalocean-4.43.
|
|
110
|
-
pulumi_digitalocean-4.43.
|
|
111
|
-
pulumi_digitalocean-4.43.
|
|
112
|
-
pulumi_digitalocean-4.43.
|
|
109
|
+
pulumi_digitalocean-4.43.0a1745984328.dist-info/METADATA,sha256=H8OveCbV9LRpgVSGxYL21r8KEODGVqEgVwRA3XXhnFM,3849
|
|
110
|
+
pulumi_digitalocean-4.43.0a1745984328.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
|
|
111
|
+
pulumi_digitalocean-4.43.0a1745984328.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
112
|
+
pulumi_digitalocean-4.43.0a1745984328.dist-info/RECORD,,
|
|
File without changes
|