pulumiverse-scaleway 1.30.0a1752168858__py3-none-any.whl → 1.31.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.
- pulumiverse_scaleway/__init__.py +27 -0
- pulumiverse_scaleway/_inputs.py +94 -32
- pulumiverse_scaleway/apple_silicon_server.py +47 -0
- pulumiverse_scaleway/applesilicon/server.py +47 -0
- pulumiverse_scaleway/autoscaling/__init__.py +13 -0
- pulumiverse_scaleway/autoscaling/_inputs.py +559 -0
- pulumiverse_scaleway/autoscaling/instance_group.py +808 -0
- pulumiverse_scaleway/autoscaling/instance_policy.py +635 -0
- pulumiverse_scaleway/autoscaling/instance_template.py +879 -0
- pulumiverse_scaleway/autoscaling/outputs.py +439 -0
- pulumiverse_scaleway/edge_services_cache_stage.py +47 -0
- pulumiverse_scaleway/get_cockpit_source.py +50 -7
- pulumiverse_scaleway/get_kubernetes_node_pool.py +12 -1
- pulumiverse_scaleway/get_vpc.py +12 -1
- pulumiverse_scaleway/get_vpc_private_network.py +12 -1
- pulumiverse_scaleway/kubernetes/get_pool.py +12 -1
- pulumiverse_scaleway/kubernetes/pool.py +61 -0
- pulumiverse_scaleway/kubernetes_node_pool.py +61 -0
- pulumiverse_scaleway/loadbalancer_acl.py +7 -7
- pulumiverse_scaleway/loadbalancers/_inputs.py +51 -11
- pulumiverse_scaleway/loadbalancers/acl.py +7 -7
- pulumiverse_scaleway/loadbalancers/outputs.py +60 -10
- pulumiverse_scaleway/network/get_private_network.py +12 -1
- pulumiverse_scaleway/network/get_vpc.py +12 -1
- pulumiverse_scaleway/network/private_network.py +47 -0
- pulumiverse_scaleway/network/vpc.py +47 -0
- pulumiverse_scaleway/object/_inputs.py +43 -21
- pulumiverse_scaleway/object/bucket_acl.py +6 -4
- pulumiverse_scaleway/object/outputs.py +26 -12
- pulumiverse_scaleway/object_bucket_acl.py +6 -4
- pulumiverse_scaleway/observability/get_source.py +50 -7
- pulumiverse_scaleway/outputs.py +86 -22
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/vpc.py +47 -0
- pulumiverse_scaleway/vpc_private_network.py +47 -0
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/RECORD +39 -36
- pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +0 -177
- pulumiverse_scaleway/get_cockpit_plan.py +0 -94
- pulumiverse_scaleway/observability/get_plan.py +0 -90
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0.dist-info}/top_level.txt +0 -0
@@ -37,6 +37,7 @@ class KubernetesNodePoolArgs:
|
|
37
37
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
38
38
|
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
39
39
|
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
40
|
+
security_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
40
41
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
41
42
|
upgrade_policy: Optional[pulumi.Input['KubernetesNodePoolUpgradePolicyArgs']] = None,
|
42
43
|
wait_for_pool_ready: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -72,6 +73,9 @@ class KubernetesNodePoolArgs:
|
|
72
73
|
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
73
74
|
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
74
75
|
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
76
|
+
:param pulumi.Input[builtins.str] security_group_id: The ID of the security group
|
77
|
+
|
78
|
+
> **Important:** Updates to this field will recreate a new resource.
|
75
79
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags associated with the pool.
|
76
80
|
|
77
81
|
> Note: As mentionned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
@@ -108,6 +112,8 @@ class KubernetesNodePoolArgs:
|
|
108
112
|
pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
|
109
113
|
if root_volume_type is not None:
|
110
114
|
pulumi.set(__self__, "root_volume_type", root_volume_type)
|
115
|
+
if security_group_id is not None:
|
116
|
+
pulumi.set(__self__, "security_group_id", security_group_id)
|
111
117
|
if tags is not None:
|
112
118
|
pulumi.set(__self__, "tags", tags)
|
113
119
|
if upgrade_policy is not None:
|
@@ -311,6 +317,20 @@ class KubernetesNodePoolArgs:
|
|
311
317
|
def root_volume_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
312
318
|
pulumi.set(self, "root_volume_type", value)
|
313
319
|
|
320
|
+
@property
|
321
|
+
@pulumi.getter(name="securityGroupId")
|
322
|
+
def security_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
323
|
+
"""
|
324
|
+
The ID of the security group
|
325
|
+
|
326
|
+
> **Important:** Updates to this field will recreate a new resource.
|
327
|
+
"""
|
328
|
+
return pulumi.get(self, "security_group_id")
|
329
|
+
|
330
|
+
@security_group_id.setter
|
331
|
+
def security_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
332
|
+
pulumi.set(self, "security_group_id", value)
|
333
|
+
|
314
334
|
@property
|
315
335
|
@pulumi.getter
|
316
336
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
@@ -384,6 +404,7 @@ class _KubernetesNodePoolState:
|
|
384
404
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
385
405
|
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
386
406
|
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
407
|
+
security_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
387
408
|
size: Optional[pulumi.Input[builtins.int]] = None,
|
388
409
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
389
410
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -423,6 +444,9 @@ class _KubernetesNodePoolState:
|
|
423
444
|
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
424
445
|
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
425
446
|
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
447
|
+
:param pulumi.Input[builtins.str] security_group_id: The ID of the security group
|
448
|
+
|
449
|
+
> **Important:** Updates to this field will recreate a new resource.
|
426
450
|
:param pulumi.Input[builtins.int] size: The size of the pool.
|
427
451
|
|
428
452
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
@@ -472,6 +496,8 @@ class _KubernetesNodePoolState:
|
|
472
496
|
pulumi.set(__self__, "root_volume_size_in_gb", root_volume_size_in_gb)
|
473
497
|
if root_volume_type is not None:
|
474
498
|
pulumi.set(__self__, "root_volume_type", root_volume_type)
|
499
|
+
if security_group_id is not None:
|
500
|
+
pulumi.set(__self__, "security_group_id", security_group_id)
|
475
501
|
if size is not None:
|
476
502
|
pulumi.set(__self__, "size", size)
|
477
503
|
if status is not None:
|
@@ -705,6 +731,20 @@ class _KubernetesNodePoolState:
|
|
705
731
|
def root_volume_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
706
732
|
pulumi.set(self, "root_volume_type", value)
|
707
733
|
|
734
|
+
@property
|
735
|
+
@pulumi.getter(name="securityGroupId")
|
736
|
+
def security_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
737
|
+
"""
|
738
|
+
The ID of the security group
|
739
|
+
|
740
|
+
> **Important:** Updates to this field will recreate a new resource.
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "security_group_id")
|
743
|
+
|
744
|
+
@security_group_id.setter
|
745
|
+
def security_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
746
|
+
pulumi.set(self, "security_group_id", value)
|
747
|
+
|
708
748
|
@property
|
709
749
|
@pulumi.getter
|
710
750
|
def size(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -833,6 +873,7 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
833
873
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
834
874
|
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
835
875
|
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
876
|
+
security_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
836
877
|
size: Optional[pulumi.Input[builtins.int]] = None,
|
837
878
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
838
879
|
upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
|
@@ -878,6 +919,9 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
878
919
|
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
879
920
|
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
880
921
|
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
922
|
+
:param pulumi.Input[builtins.str] security_group_id: The ID of the security group
|
923
|
+
|
924
|
+
> **Important:** Updates to this field will recreate a new resource.
|
881
925
|
:param pulumi.Input[builtins.int] size: The size of the pool.
|
882
926
|
|
883
927
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
@@ -936,6 +980,7 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
936
980
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
937
981
|
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
938
982
|
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
983
|
+
security_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
939
984
|
size: Optional[pulumi.Input[builtins.int]] = None,
|
940
985
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
941
986
|
upgrade_policy: Optional[pulumi.Input[Union['KubernetesNodePoolUpgradePolicyArgs', 'KubernetesNodePoolUpgradePolicyArgsDict']]] = None,
|
@@ -969,6 +1014,7 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
969
1014
|
__props__.__dict__["region"] = region
|
970
1015
|
__props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
|
971
1016
|
__props__.__dict__["root_volume_type"] = root_volume_type
|
1017
|
+
__props__.__dict__["security_group_id"] = security_group_id
|
972
1018
|
if size is None and not opts.urn:
|
973
1019
|
raise TypeError("Missing required property 'size'")
|
974
1020
|
__props__.__dict__["size"] = size
|
@@ -1009,6 +1055,7 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
1009
1055
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
1010
1056
|
root_volume_size_in_gb: Optional[pulumi.Input[builtins.int]] = None,
|
1011
1057
|
root_volume_type: Optional[pulumi.Input[builtins.str]] = None,
|
1058
|
+
security_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
1012
1059
|
size: Optional[pulumi.Input[builtins.int]] = None,
|
1013
1060
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
1014
1061
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -1053,6 +1100,9 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
1053
1100
|
:param pulumi.Input[builtins.str] region: `region`) The region in which the pool should be created.
|
1054
1101
|
:param pulumi.Input[builtins.int] root_volume_size_in_gb: The size of the system volume of the nodes in gigabyte
|
1055
1102
|
:param pulumi.Input[builtins.str] root_volume_type: System volume type of the nodes composing the pool
|
1103
|
+
:param pulumi.Input[builtins.str] security_group_id: The ID of the security group
|
1104
|
+
|
1105
|
+
> **Important:** Updates to this field will recreate a new resource.
|
1056
1106
|
:param pulumi.Input[builtins.int] size: The size of the pool.
|
1057
1107
|
|
1058
1108
|
> **Important:** This field will only be used at creation if autoscaling is enabled.
|
@@ -1089,6 +1139,7 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
1089
1139
|
__props__.__dict__["region"] = region
|
1090
1140
|
__props__.__dict__["root_volume_size_in_gb"] = root_volume_size_in_gb
|
1091
1141
|
__props__.__dict__["root_volume_type"] = root_volume_type
|
1142
|
+
__props__.__dict__["security_group_id"] = security_group_id
|
1092
1143
|
__props__.__dict__["size"] = size
|
1093
1144
|
__props__.__dict__["status"] = status
|
1094
1145
|
__props__.__dict__["tags"] = tags
|
@@ -1247,6 +1298,16 @@ class KubernetesNodePool(pulumi.CustomResource):
|
|
1247
1298
|
"""
|
1248
1299
|
return pulumi.get(self, "root_volume_type")
|
1249
1300
|
|
1301
|
+
@property
|
1302
|
+
@pulumi.getter(name="securityGroupId")
|
1303
|
+
def security_group_id(self) -> pulumi.Output[builtins.str]:
|
1304
|
+
"""
|
1305
|
+
The ID of the security group
|
1306
|
+
|
1307
|
+
> **Important:** Updates to this field will recreate a new resource.
|
1308
|
+
"""
|
1309
|
+
return pulumi.get(self, "security_group_id")
|
1310
|
+
|
1250
1311
|
@property
|
1251
1312
|
@pulumi.getter
|
1252
1313
|
def size(self) -> pulumi.Output[builtins.int]:
|
@@ -34,7 +34,7 @@ class LoadbalancerAclArgs:
|
|
34
34
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
35
35
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
36
36
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
37
|
-
:param pulumi.Input['LoadbalancerAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
37
|
+
:param pulumi.Input['LoadbalancerAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
38
38
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
39
39
|
"""
|
40
40
|
pulumi.set(__self__, "action", action)
|
@@ -99,7 +99,7 @@ class LoadbalancerAclArgs:
|
|
99
99
|
@pulumi.getter
|
100
100
|
def match(self) -> Optional[pulumi.Input['LoadbalancerAclMatchArgs']]:
|
101
101
|
"""
|
102
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
102
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
103
103
|
"""
|
104
104
|
return pulumi.get(self, "match")
|
105
105
|
|
@@ -138,7 +138,7 @@ class _LoadbalancerAclState:
|
|
138
138
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
139
139
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
140
140
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
141
|
-
:param pulumi.Input['LoadbalancerAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
141
|
+
:param pulumi.Input['LoadbalancerAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
142
142
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
143
143
|
:param pulumi.Input[builtins.str] updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
144
144
|
"""
|
@@ -223,7 +223,7 @@ class _LoadbalancerAclState:
|
|
223
223
|
@pulumi.getter
|
224
224
|
def match(self) -> Optional[pulumi.Input['LoadbalancerAclMatchArgs']]:
|
225
225
|
"""
|
226
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
226
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
227
227
|
"""
|
228
228
|
return pulumi.get(self, "match")
|
229
229
|
|
@@ -320,7 +320,7 @@ class LoadbalancerAcl(pulumi.CustomResource):
|
|
320
320
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
321
321
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
322
322
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
323
|
-
:param pulumi.Input[Union['LoadbalancerAclMatchArgs', 'LoadbalancerAclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
323
|
+
:param pulumi.Input[Union['LoadbalancerAclMatchArgs', 'LoadbalancerAclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
324
324
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
325
325
|
"""
|
326
326
|
...
|
@@ -444,7 +444,7 @@ class LoadbalancerAcl(pulumi.CustomResource):
|
|
444
444
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
445
445
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
446
446
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
447
|
-
:param pulumi.Input[Union['LoadbalancerAclMatchArgs', 'LoadbalancerAclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
447
|
+
:param pulumi.Input[Union['LoadbalancerAclMatchArgs', 'LoadbalancerAclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
448
448
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
449
449
|
:param pulumi.Input[builtins.str] updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
450
450
|
"""
|
@@ -506,7 +506,7 @@ class LoadbalancerAcl(pulumi.CustomResource):
|
|
506
506
|
@pulumi.getter
|
507
507
|
def match(self) -> pulumi.Output[Optional['outputs.LoadbalancerAclMatch']]:
|
508
508
|
"""
|
509
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
509
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
510
510
|
"""
|
511
511
|
return pulumi.get(self, "match")
|
512
512
|
|
@@ -194,7 +194,11 @@ if not MYPY:
|
|
194
194
|
"""
|
195
195
|
ip_subnets: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
196
196
|
"""
|
197
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
197
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
198
|
+
"""
|
199
|
+
ips_edge_services: NotRequired[pulumi.Input[builtins.bool]]
|
200
|
+
"""
|
201
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
198
202
|
"""
|
199
203
|
elif False:
|
200
204
|
AclMatchArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -206,7 +210,8 @@ class AclMatchArgs:
|
|
206
210
|
http_filter_option: Optional[pulumi.Input[builtins.str]] = None,
|
207
211
|
http_filter_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
208
212
|
invert: Optional[pulumi.Input[builtins.bool]] = None,
|
209
|
-
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None
|
213
|
+
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
214
|
+
ips_edge_services: Optional[pulumi.Input[builtins.bool]] = None):
|
210
215
|
"""
|
211
216
|
:param pulumi.Input[builtins.str] http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
212
217
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -215,7 +220,8 @@ class AclMatchArgs:
|
|
215
220
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] http_filter_values: A list of possible values to match for the given HTTP filter.
|
216
221
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
217
222
|
:param pulumi.Input[builtins.bool] invert: If set to `true`, the condition will be of type "unless".
|
218
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
223
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
224
|
+
:param pulumi.Input[builtins.bool] ips_edge_services: Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
219
225
|
"""
|
220
226
|
if http_filter is not None:
|
221
227
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -227,6 +233,8 @@ class AclMatchArgs:
|
|
227
233
|
pulumi.set(__self__, "invert", invert)
|
228
234
|
if ip_subnets is not None:
|
229
235
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
236
|
+
if ips_edge_services is not None:
|
237
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
230
238
|
|
231
239
|
@property
|
232
240
|
@pulumi.getter(name="httpFilter")
|
@@ -283,7 +291,7 @@ class AclMatchArgs:
|
|
283
291
|
@pulumi.getter(name="ipSubnets")
|
284
292
|
def ip_subnets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
285
293
|
"""
|
286
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
294
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
287
295
|
"""
|
288
296
|
return pulumi.get(self, "ip_subnets")
|
289
297
|
|
@@ -291,6 +299,18 @@ class AclMatchArgs:
|
|
291
299
|
def ip_subnets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
292
300
|
pulumi.set(self, "ip_subnets", value)
|
293
301
|
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="ipsEdgeServices")
|
304
|
+
def ips_edge_services(self) -> Optional[pulumi.Input[builtins.bool]]:
|
305
|
+
"""
|
306
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "ips_edge_services")
|
309
|
+
|
310
|
+
@ips_edge_services.setter
|
311
|
+
def ips_edge_services(self, value: Optional[pulumi.Input[builtins.bool]]):
|
312
|
+
pulumi.set(self, "ips_edge_services", value)
|
313
|
+
|
294
314
|
|
295
315
|
if not MYPY:
|
296
316
|
class BackendHealthCheckHttpArgsDict(TypedDict):
|
@@ -596,7 +616,7 @@ if not MYPY:
|
|
596
616
|
"""
|
597
617
|
match: pulumi.Input['FrontendAclMatchArgsDict']
|
598
618
|
"""
|
599
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
619
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
600
620
|
"""
|
601
621
|
created_at: NotRequired[pulumi.Input[builtins.str]]
|
602
622
|
"""
|
@@ -628,7 +648,7 @@ class FrontendAclArgs:
|
|
628
648
|
updated_at: Optional[pulumi.Input[builtins.str]] = None):
|
629
649
|
"""
|
630
650
|
:param pulumi.Input['FrontendAclActionArgs'] action: Action to undertake when an ACL filter matches.
|
631
|
-
:param pulumi.Input['FrontendAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
651
|
+
:param pulumi.Input['FrontendAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
632
652
|
:param pulumi.Input[builtins.str] created_at: IsDate and time of ACL's creation (RFC 3339 format)
|
633
653
|
:param pulumi.Input[builtins.str] description: Description of the ACL
|
634
654
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
@@ -661,7 +681,7 @@ class FrontendAclArgs:
|
|
661
681
|
@pulumi.getter
|
662
682
|
def match(self) -> pulumi.Input['FrontendAclMatchArgs']:
|
663
683
|
"""
|
664
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
684
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
665
685
|
"""
|
666
686
|
return pulumi.get(self, "match")
|
667
687
|
|
@@ -864,7 +884,11 @@ if not MYPY:
|
|
864
884
|
"""
|
865
885
|
ip_subnets: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
866
886
|
"""
|
867
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
887
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
888
|
+
"""
|
889
|
+
ips_edge_services: NotRequired[pulumi.Input[builtins.bool]]
|
890
|
+
"""
|
891
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
868
892
|
"""
|
869
893
|
elif False:
|
870
894
|
FrontendAclMatchArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -876,7 +900,8 @@ class FrontendAclMatchArgs:
|
|
876
900
|
http_filter_option: Optional[pulumi.Input[builtins.str]] = None,
|
877
901
|
http_filter_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
878
902
|
invert: Optional[pulumi.Input[builtins.bool]] = None,
|
879
|
-
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None
|
903
|
+
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
904
|
+
ips_edge_services: Optional[pulumi.Input[builtins.bool]] = None):
|
880
905
|
"""
|
881
906
|
:param pulumi.Input[builtins.str] http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
882
907
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -885,7 +910,8 @@ class FrontendAclMatchArgs:
|
|
885
910
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] http_filter_values: A list of possible values to match for the given HTTP filter.
|
886
911
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
887
912
|
:param pulumi.Input[builtins.bool] invert: If set to `true`, the condition will be of type "unless".
|
888
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
913
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
914
|
+
:param pulumi.Input[builtins.bool] ips_edge_services: Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
889
915
|
"""
|
890
916
|
if http_filter is not None:
|
891
917
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -897,6 +923,8 @@ class FrontendAclMatchArgs:
|
|
897
923
|
pulumi.set(__self__, "invert", invert)
|
898
924
|
if ip_subnets is not None:
|
899
925
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
926
|
+
if ips_edge_services is not None:
|
927
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
900
928
|
|
901
929
|
@property
|
902
930
|
@pulumi.getter(name="httpFilter")
|
@@ -953,7 +981,7 @@ class FrontendAclMatchArgs:
|
|
953
981
|
@pulumi.getter(name="ipSubnets")
|
954
982
|
def ip_subnets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
955
983
|
"""
|
956
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
984
|
+
A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
957
985
|
"""
|
958
986
|
return pulumi.get(self, "ip_subnets")
|
959
987
|
|
@@ -961,6 +989,18 @@ class FrontendAclMatchArgs:
|
|
961
989
|
def ip_subnets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
962
990
|
pulumi.set(self, "ip_subnets", value)
|
963
991
|
|
992
|
+
@property
|
993
|
+
@pulumi.getter(name="ipsEdgeServices")
|
994
|
+
def ips_edge_services(self) -> Optional[pulumi.Input[builtins.bool]]:
|
995
|
+
"""
|
996
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
997
|
+
"""
|
998
|
+
return pulumi.get(self, "ips_edge_services")
|
999
|
+
|
1000
|
+
@ips_edge_services.setter
|
1001
|
+
def ips_edge_services(self, value: Optional[pulumi.Input[builtins.bool]]):
|
1002
|
+
pulumi.set(self, "ips_edge_services", value)
|
1003
|
+
|
964
1004
|
|
965
1005
|
if not MYPY:
|
966
1006
|
class LoadBalancerPrivateIpArgsDict(TypedDict):
|
@@ -34,7 +34,7 @@ class AclArgs:
|
|
34
34
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
35
35
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
36
36
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
37
|
-
:param pulumi.Input['AclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
37
|
+
:param pulumi.Input['AclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
38
38
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
39
39
|
"""
|
40
40
|
pulumi.set(__self__, "action", action)
|
@@ -99,7 +99,7 @@ class AclArgs:
|
|
99
99
|
@pulumi.getter
|
100
100
|
def match(self) -> Optional[pulumi.Input['AclMatchArgs']]:
|
101
101
|
"""
|
102
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
102
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
103
103
|
"""
|
104
104
|
return pulumi.get(self, "match")
|
105
105
|
|
@@ -138,7 +138,7 @@ class _AclState:
|
|
138
138
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
139
139
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
140
140
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
141
|
-
:param pulumi.Input['AclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
141
|
+
:param pulumi.Input['AclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
142
142
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
143
143
|
:param pulumi.Input[builtins.str] updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
144
144
|
"""
|
@@ -223,7 +223,7 @@ class _AclState:
|
|
223
223
|
@pulumi.getter
|
224
224
|
def match(self) -> Optional[pulumi.Input['AclMatchArgs']]:
|
225
225
|
"""
|
226
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
226
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
227
227
|
"""
|
228
228
|
return pulumi.get(self, "match")
|
229
229
|
|
@@ -315,7 +315,7 @@ class Acl(pulumi.CustomResource):
|
|
315
315
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
316
316
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
317
317
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
318
|
-
:param pulumi.Input[Union['AclMatchArgs', 'AclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
318
|
+
:param pulumi.Input[Union['AclMatchArgs', 'AclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
319
319
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
320
320
|
"""
|
321
321
|
...
|
@@ -440,7 +440,7 @@ class Acl(pulumi.CustomResource):
|
|
440
440
|
:param pulumi.Input[builtins.str] description: The ACL description.
|
441
441
|
:param pulumi.Input[builtins.str] frontend_id: The ID of the Load Balancer frontend to attach the ACL to.
|
442
442
|
:param pulumi.Input[builtins.int] index: The priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).
|
443
|
-
:param pulumi.Input[Union['AclMatchArgs', 'AclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
443
|
+
:param pulumi.Input[Union['AclMatchArgs', 'AclMatchArgsDict']] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
444
444
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
445
445
|
:param pulumi.Input[builtins.str] updated_at: IsDate and time of ACL's update (RFC 3339 format)
|
446
446
|
"""
|
@@ -502,7 +502,7 @@ class Acl(pulumi.CustomResource):
|
|
502
502
|
@pulumi.getter
|
503
503
|
def match(self) -> pulumi.Output[Optional['outputs.AclMatch']]:
|
504
504
|
"""
|
505
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
505
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
506
506
|
"""
|
507
507
|
return pulumi.get(self, "match")
|
508
508
|
|